TiffLibrary icon indicating copy to clipboard operation
TiffLibrary copied to clipboard

C# library for decoding and encoding Tag Image File Format (TIFF) files.

Results 8 TiffLibrary issues
Sort by recently updated
recently updated
newest added

I encountered a problem encoding a very large tiled image. First there is a performance issue forcing the usage of MemoryBuffer. Second, the MemoryBuffer has max array size that is...

Fixes a problem where 16 bit gray images are not saved correctly; only 8 bit was supported. Changed BlackIsZero8Encoder to BlackIsZeroEncoder and infer BytePerSample and BitsPerSample from the type. Also...

Hi, is there any plan to allow for signed shorts, int16s and sfloats in the decoded arrays? Is there a way to go about extending the library ourselves to do...

Since I upgraded to the latest version of the ImageSharp adapter v.0.6.65, I am getting an exception when executing ``` SixLabors.ImageSharp.Configuration.Default.Configure(new TiffLibrary.ImageSharpAdapter.TiffConfigurationModule());` ``` I am getting this exception: ``` An...

Love the library, just cannot work this question out by myself. I want to open an image `StorageFile`, change the metadata of the image, and then store it using the...

Does the TiffLibrary provide a way to access the raw image data as byte array? Asking that because I need to extract the images from the Tiff. Edit: I think...

Although the constructors for `TiffFileStreamContentSource` / `TiffRandomAccessFileContentSource` call `GetOrCreateStream` / `GetOrCreateFileHandle` with `useAsync` set to `preferAsync` (default `true`), the `TiffFileReader.OpenAsync` method then immediately calls `contentSource.OpenReaderAsync`, which in both these implementing...