Tesseract.pix_write_tiffFunction
pix_write_tiff(
    filename::AbstractString,
    pix::Pix;
    compression::IFF = IFF_TIFF,
    append::Bool = false
)::Bool

Write an image to a file in the TIFF image format. Returns false if there was an error.

Arguments:

TNameDefaultDescription
RfilenameThe name of the file to write to or create.
RpixThe image to write to disk.
OcompressionIFF_TIFFThe compression to use on the image.
OappendfalseShould we overwrite the image or append it to the file.

Restrictions:

  • compression - Must be a one of the following compression formats:

    • IFF_TIFF - Supports all images.
    • IFF_TIFF_RLE - Requires a b&w 1bpp image.
    • IFF_TIFF_PACKBITS - Requires a b&w 1bpp image.
    • IFF_TIFF_G3 - Requires a b&w 1bpp image.
    • IFF_TIFF_G4 - Requires a b&w 1bpp image.
    • IFF_TIFF_LZW - Supports all images.
    • IFF_TIFF_ZIP - Supports all images.
    • IFF_TIFF_JPEG - Supports all images.

Details:

The default compression is no compression.

TIFF files can contain multiple image. If a file does not exist it will be created. If the file exists and append is false then the file will be overwritten. If append is true then the image will be added to the file.

source
pix_write_tiff(
    stream::IO,
    pix::Pix;
    compression::IFF = IFF_TIFF
)::Bool

Write an image to an IO stream in the TIFF image format. Returns false if there was an error.

Arguments:

TNameDefaultDescription
RstreamThe stream to write the image to.
RpixThe image to write to disk.
OcompressionIFF_TIFFThe compression to use on the image.

Restrictions:

  • compression - Must be a one of the following compression formats:

    • IFF_TIFF - Supports all images.
    • IFF_TIFF_RLE - Requires a b&w 1bpp image.
    • IFF_TIFF_PACKBITS - Requires a b&w 1bpp image.
    • IFF_TIFF_G3 - Requires a b&w 1bpp image.
    • IFF_TIFF_G4 - Requires a b&w 1bpp image.
    • IFF_TIFF_LZW - Supports all images.
    • IFF_TIFF_ZIP - Supports all images.
    • IFF_TIFF_JPEG - Supports all images.

Details:

The default compression is no compression.

source
pix_write_tiff(
    pix::Pix;
    compression::IFF = IFF_TIFF
)::Union{Vector{UInt8}, Nothing}

Write an image to an byte array in the TIFF image format. Returns nothing if there was an error.

Arguments:

TNameDefaultDescription
RpixThe image to write to a byte array.
OcompressionIFF_TIFFThe compression to use on the image.

Restrictions:

  • compression - Must be a one of the following compression formats:

    • IFF_TIFF - Supports all images.
    • IFF_TIFF_RLE - Requires a b&w 1bpp image.
    • IFF_TIFF_PACKBITS - Requires a b&w 1bpp image.
    • IFF_TIFF_G3 - Requires a b&w 1bpp image.
    • IFF_TIFF_G4 - Requires a b&w 1bpp image.
    • IFF_TIFF_LZW - Supports all images.
    • IFF_TIFF_ZIP - Supports all images.
    • IFF_TIFF_JPEG - Supports all images.

Details:

The default compression is no compression.

source