File: bandformat.rb

package info (click to toggle)
ruby-vips 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,164 kB
  • sloc: ruby: 3,530; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Vips
  # The format used for each band element. Each corresponds to a native C type
  # for the current machine.
  #
  # * `:notset` invalid setting
  # * `:uchar` unsigned char format
  # * `:char` char format
  # * `:ushort` unsigned short format
  # * `:short` short format
  # * `:uint` unsigned int format
  # * `:int` int format
  # * `:float` float format
  # * `:complex` complex (two floats) format
  # * `:double` double float format
  # * `:dpcomplex` double complex (two double) format
  class BandFormat < Symbol
  end
end