Tesseract.pix_write_spixFunction
pix_write_spix(
    filename::AbstractString,
    pix::Pix
)::Bool

Write an image to a file in the SPIX image format. If there is an error false is returned.

Arguments:

TNameDefaultDescription
RfilenameThe name of the file to write to.
RpixThe image to write to the file.

Details:

If the file exists it will be overwritten.

source
pix_write_spix(
    stream::IO,
    pix::Pix
)::Bool

Write an image to an IO stream in the SPIX image format. If there is an error false is returned.

Arguments:

TNameDefaultDescription
RstreamThe stream to write the image to.
RpixThe image to write to the file.
source
pix_write_spix(
    pix::Pix
)::Union{Vector{UInt8}, Nothing}

Write an image to a byte array in the SPIX image format. If there is an error nothing is returned.

Arguments:

TNameDefaultDescription
RpixThe image to write to a byte array.
source