Sha256: ec34ded5af12406a2e50e530080edf6f70cfbd25ef5f8016bc5db9b88d232a52
Contents?: true
Size: 530 Bytes
Versions: 16
Compression:
Stored size: 530 Bytes
Contents
module WebP ENCODER_ERRORS = [ "Version mismatch", "Invalid configuration", "Cannot read input picture file", "Cannot open output file", "Cannot crop picture", "Cannot resize picture", "Cannot encode picture as WebP"] DECODER_ERRORS = [ "Version mismatch", "Invalid webp image", "Invalid output format", "Decoding failed"] class InvalidImageFormatError < StandardError; end class EncoderError < StandardError; end class DecoderError < StandardError; end end
Version data entries
16 entries across 16 versions & 1 rubygems