Tesseract.pix_read_gifFunction
pix_read_gif(
    filename::AbstractString
)::Union{Pix, Nothing}

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

Arguments:

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

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

Arguments:

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

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

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

Arguments:

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