Click or drag to resize

TiffEncoderStripSize Property

Gets or sets the strip size used when saving the image.

Namespace:  Atalasoft.Imaging.Codec
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public int StripSize { get; set; }

Property Value

Type: Int32
The strip size used when saving the image.
Exceptions
ExceptionCondition
The strip size must be a value greater than or equal to -1.
Remarks

The strip size is the number of image rows saved as a single strip in the TIFF. The default value is -1, which will automatically calculate a strip size equal to about 8Kb of uncompressed data. For higher compression, it often makes sense to increase this number.

If the StripSize is greater than the image height, the actual strip size will equal the image height.

See Also