Tesseract.pix_readFunction
pix_read(
    filename::AbstractString;
    jpgLuminance::Bool = false,
    jpgFailOnBadData::Bool = false
)::Union{Pix, Nothing}

Load an image from from disk of an unspecified type. Returns nothing if the file could not be loaded.

Arguments:

TNameDefaultDescription
RfilenameThe filename of the image to load.
OjpgLuminancefalseIf the image is a JPEG should we only load luminance data?
OjpgFailOnBadDatafalseIf the image is a JPEG should we ignore bit errors?

Details:

The two optional parameters are obviously ignored if the image is not a JPEG.

source
pix_read(
    stream::IO
)::Union{Pix, Nothing}

Load an image from from a stream. Returns nothing if the file could not be loaded.

Arguments:

TNameDefaultDescription
RstreamThe stream to read the image from.

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 an image, so the remainder of the stream will be read and decoded as an image.

source
pix_read(
    data::AbstractArray{UInt8}
)::Union{Pix, Nothing}

Load an image from from a byte array. Returns nothing if the file could not be loaded.

Arguments:

TNameDefaultDescription
RdataThe byte array to read the image from.
source