We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TiffWriter.save
Describe the issue:
The TiffWriter.save method has been removed in tifffile version 2025.2.18 and newer
tifffile
2025.2.18
https://github.com/cgohlke/tifffile/blob/78b57cf84bd92528ba8877ea4972769bb4d43600/tifffile/tifffile.py#L132
Minimal Complete Verifiable Example:
However we are still using it in the following test
dask-image/tests/test_dask_image/test_imread/test_cupy_imread.py
Lines 10 to 17 in bbfad41
The text was updated successfully, but these errors were encountered:
Think this can be resolved by pulling over @m-albert 's changes from PR: #393
Namely replacing save with write
save
write
with tifffile.TiffWriter(fn) as fh: for i in range(len(a)): - fh.save(a[i]) + fh.write(a[i])
Sorry, something went wrong.
tifffile.TiffWriter
test_cupy_imread
Submitted a fix in PR: #398
Successfully merging a pull request may close this issue.
Describe the issue:
The
TiffWriter.save
method has been removed intifffile
version2025.2.18
and newerhttps://github.com/cgohlke/tifffile/blob/78b57cf84bd92528ba8877ea4972769bb4d43600/tifffile/tifffile.py#L132
Minimal Complete Verifiable Example:
However we are still using it in the following test
dask-image/tests/test_dask_image/test_imread/test_cupy_imread.py
Lines 10 to 17 in bbfad41
The text was updated successfully, but these errors were encountered: