Sha256: 0b618bdd915246f6aced2f3a839f550dd45bbcefdcf39d1bab7bc5c890e3162e

Contents?: true

Size: 464 Bytes

Versions: 4

Compression:

Stored size: 464 Bytes

Contents

module Vips

  # How pixels are coded.
  #
  # Normally, pixels are uncoded and can be manipulated as you would expect.
  # However some file formats code pixels for compression, and sometimes it's
  # useful to be able to manipulate images in the coded format.
  #
  # * `:none` pixels are not coded
  # * `:labq` pixels encode 3 float CIELAB values as 4 uchar
  # * `:rad` pixels encode 3 float RGB as 4 uchar (Radiance coding)
  class Coding < Symbol
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
ruby-vips-2.0.14 lib/vips/coding.rb
vips-8.8.0.3 lib/vips/coding.rb
vips-8.8.0.2 lib/vips/coding.rb
vips-8.8.0.1 lib/vips/coding.rb