Tesseract.pix_read_bmpFunction
pix_read_bmp(
    filename::AbstractString
)::Union{Pix, Nothing}

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

Arguments:

TNameDefaultDescription
RfilenameThe name of the BMP file to load.
source
pix_read_bmp(
    stream::IO
)::Union{Pix, Nothing}

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

Arguments:

TNameDefaultDescription
RstreamThe IO stream to read the BMP file 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 a BMP image.

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

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

Arguments:

TNameDefaultDescription
RdataThe byte array to read the BMP image from.
source