Tesseract.pix_read_tiffFunction
pix_read_tiff(
    filename::AbstractString;
    page::Integer = Int32(1)
)::Union{Pix, Nothing}

Read a TIFF image from the specified file. Returns nothing on error.

Arguments:

TNameDefaultDescription
RfilenameThe name of the TIFF file to load.
OpageInt32(1)The image to load from the file.

Restrictions:

  • page - Must be greater than 0.

Details:

TIFF files can contain multiple images. The page parameter allows you to specify which image you want to load.

source
pix_read_tiff(
    stream::IO;
    page::Integer = Int32(1)
)::Union{Pix, Nothing}

Read a TIFF image from the specified stream. Returns nothing on error.

Arguments:

TNameDefaultDescription
RstreamThe IO stream to read the TIFF file from.
OpageInt32(1)The image to load from the file.

Restrictions:

  • page - Must be greater than 0.

Details:

This implementation mirrors the API provided by Leptonica when you pass in a FILE pointer. This assumes that the remainder of the stream contains a TIFF image.

TIFF files can contain multiple images. The page parameter allows you to specify which image you want to load.

source
pix_read_tiff(
    data::AbstractArray{UInt8};
    page::Integer = Int32(1)
)::Union{Pix, Nothing}

Read a TIFF image from the byte array. Returns nothing on error.

Arguments:

TNameDefaultDescription
RdataThe byte array to read the TIFF image from.
OpageInt32(1)The image to load from the file.

Restrictions:

  • page - Must be greater than 0.

Details:

TIFF files can contain multiple images. The page parameter allows you to specify which image you want to load.

source