Tesseract.pix_write_webpFunction
pix_write_webp(
    filename::AbstractString,
    pix::Pix;
    quality::Integer = Int32(80),
    lossless::Bool = true
)::Bool

Write an image to a file in the WEBP 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 disk.
OqualityInt32(80)The quality to encode the image at.
OlosslessfalseShould the lossless algorithm be used?

Restrictions:

  • quality - Must be in the range 1 to 100.

Details:

If the file exists it will be overwritten.

If lossless is set to true then the quality is ignored.

source
pix_write_webp(
    stream::IO,
    pix::Pix;
    quality::Integer = Int32(80),
    lossless::Bool = true
)::Bool

Write an image to a stream in the WEBP image format. If there is an error false is returned.

Arguments:

TNameDefaultDescription
RstreamThe IO stream to write to.
RpixThe image to write to the stream.
OqualityInt32(80)The quality to encode the image at.
OlosslessfalseShould the lossless algorithm be used?

Restrictions:

  • quality - Must be in the range 1 to 100.

Details:

If the file exists it will be overwritten.

If lossless is set to true then the quality is ignored.

source
pix_write_webp(
    pix::Pix;
    quality::Integer = Int32(80),
    lossless::Bool = true
)::Union{Vector{UInt8}, Nothing}

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

Arguments:

TNameDefaultDescription
RpixThe image to write to the stream.
OqualityInt32(80)The quality to encode the image at.
OlosslessfalseShould the lossless algorithm be used?

Restrictions:

  • quality - Must be in the range 1 to 100.

Details:

If the file exists it will be overwritten.

If lossless is set to true then the quality is ignored.

source