Tesseract.pix_writeFunction
pix_write(
    filename::String,
    pix::Pix,
    format::IFF = IFF_DEFAULT
)::Bool

Write an image to disk in the specified format. If there is an error false is returned.

Arguments:

TNameDefaultDescription
RfilenameThe filename to write the image to.
RpixThe image to write to disk.
OformatIFF_DEFAULTThe image format to write the image out as.

Details:

If the file exists it will be overwritten.

If format isn't specified Leptonica will choose the correct format to write the image as based on the input format.

source
pix_write(
    stream::IO,
    pix::Pix,
    format::IFF = IFF_DEFAULT
)::Bool

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

Arguments:

TNameDefaultDescription
RstreamThe stream to write the image to.
RpixThe image to write to the stream.
OformatIFF_DEFAULTThe image format to write the image out as.

Details:

If format isn't specified Leptonica will choose the correct format to write the image as based on the input format.

source
pix_write(
    pix::Pix,
    format::IFF = IFF_DEFAULT
):::Union{Vector{UInt8}, Nothing}

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

Arguments:

TNameDefaultDescription
RpixThe image to write to the stream.
OformatIFF_DEFAULTThe image format to write the image out as.

Details:

If format isn't specified Leptonica will choose the correct format to write the image as based on the input format.

source