Tesseract.pix_read_jpegFunction
pix_read_jpeg(
    filename::AbstractString;
    cmap::Bool = false,
    reduction::Integer = Int32(1),
    luminance::Bool = false,
    ignoreErrors::Bool = false
)::Union{Pix, Nothing}

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

Arguments:

TNameDefaultDescription
RfilenameThe name of the JPEG file to load.
OcmapfalseLoad the image as color mapped.
OreductionInt32(1)Load a reduced resolution image.
OluminancefalseOnly load the luminace data from the image.
OignoreErrorsfalseIgnore errors in the file.

Restrictions:

  • cmap - Requires that SPP be 3 or 4 in the image, so not all JPEG images can be loaded as color mapped.
  • reduction - Must be 1, 2, 4, or 8.

Details:

The reduction parameter can be used to load the image faster but at a reduced resolution. The JPEG specifification allows the reader to recover from bit errors. Setting ignoreErrors to true will allow files with bit errors to be loaded but the image may not be correct.

source
pix_read_jpeg(
    stream::IO;
    cmap::Bool = false,
    reduction::Integer = Int32(1),
    luminance::Bool = false,
    ignoreErrors::Bool = false
)::Union{Pix, Nothing}

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

Arguments:

TNameDefaultDescription
RstreamThe IO stream to read the JPEG file from.
OcmapfalseLoad the image as color mapped.
OreductionInt32(1)Load a reduced resolution image.
OluminancefalseOnly load the luminace data from the image.
OignoreErrorsfalseIgnore errors in the file.

Restrictions:

  • cmap - Requires that SPP be 3 or 4 in the image, so not all JPEG images can be loaded as color mapped.
  • reduction - Must be 1, 2, 4, or 8.

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 JPEG image.

The reduction parameter can be used to load the image faster but at a reduced resolution. The JPEG specifification allows the reader to recover from bit errors. Setting ignoreErrors to true will allow files with bit errors to be loaded but the image may not be correct.

source
pix_read_jpeg(
    data::AbstractArray{UInt8};
    cmap::Bool = false,
    reduction::Integer = Int32(1),
    luminance::Bool = false,
    ignoreErrors::Bool = false
)::Union{Pix, Nothing}

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

Arguments:

TNameDefaultDescription
RdataThe byte array to read the JPEG image from.
OcmapfalseLoad the image as color mapped.
OreductionInt32(1)Load a reduced resolution image.
OluminancefalseOnly load the luminace data from the image.
OignoreErrorsfalseIgnore errors in the file.

Restrictions:

  • cmap - Requires that SPP be 3 or 4 in the image, so not all JPEG images can be loaded as color mapped.
  • reduction - Must be 1, 2, 4, or 8.

Details:

The reduction parameter can be used to load the image faster but at a reduced resolution. The JPEG specifification allows the reader to recover from bit errors. Setting ignoreErrors to true will allow files with bit errors to be loaded but the image may not be correct.

source