File: align.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 (10 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
module Vips
  # Various types of alignment. See {Image#join}, for example.
  #
  # * `:low` Align on the low coordinate edge
  # * `:centre` Align on the centre
  # * `:high` Align on the high coordinate edge

  class Align < Symbol
  end
end