Class: VIPS::PPMWriter
- Defined in:
- lib/vips/writer.rb,
ext/writer.c more...
Constant Summary collapse
- FORMAT =
[:binary, :ascii]
Instance Attribute Summary collapse
-
#format ⇒ Object
Returns the value of attribute format.
Instance Method Summary collapse
-
#initialize(image, options = {}) ⇒ PPMWriter
constructor
A new instance of PPMWriter.
- #write(path) ⇒ Object
Methods inherited from Writer
#exif=, #icc=, #image, #remove_exif, #remove_icc
Methods included from Header
#band_fmt, #bands, #exif, #exif?, #get, #icc, #icc?, #n_elements, #set, #sizeof_element, #sizeof_line, #sizeof_pel, #x_offset, #x_res, #x_size, #y_offset, #y_res, #y_size
Constructor Details
permalink #initialize(image, options = {}) ⇒ PPMWriter
Returns a new instance of PPMWriter.
87 88 89 90 91 92 93 |
# File 'lib/vips/writer.rb', line 87 def initialize(image, ={}) super image @format = :binary self.format = [:format] if .has_key?(:format) end |
Instance Attribute Details
permalink #format ⇒ Object
Returns the value of attribute format.
83 84 85 |
# File 'lib/vips/writer.rb', line 83 def format @format end |
Instance Method Details
permalink #write(path) ⇒ Object
[View source]
95 96 97 |
# File 'lib/vips/writer.rb', line 95 def write(path) write_internal "#{path}:#{@format}" end |