imageio.plugins.tifffile_v3.TifffilePlugin.write#
- TifffilePlugin.write(ndimage: Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], *, is_batch: bool = False, **kwargs) bytes | None[source]#
Save a ndimage as TIFF.
- Parameters:
- ndimageArrayLike
The ndimage to encode and write to the ImageResource.
- is_batchbool
If True, the first dimension of the given ndimage is treated as a batch dimension and each element will create a new series.
- kwargsAny
Additional kwargs are forwarded to TiffWriter’s
writemethod.
- Returns:
- encoded_imagebytes
If the ImageResource is
"<bytes>", return the encoded bytes. Otherwise write returns None.
Notes
Incremental writing is supported. Subsequent calls to
writewill create new series unlesscontiguous=Trueis used, in which case the call to write will append to the current series.