Class: VIPS::JPEGWriter

Inherits:
Writer
  • Object
show all
Defined in:
lib/vips/writer.rb,
ext/writer.c

Instance Attribute Summary collapse

Instance Method Summary collapse

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, #size, #sizeof_element, #sizeof_line, #sizeof_pel, #x_offset, #x_res, #x_size, #y_offset, #y_res, #y_size

Constructor Details

#initialize(image, options = {}) ⇒ JPEGWriter

Returns a new instance of JPEGWriter.



57
58
59
60
61
62
63
# File 'lib/vips/writer.rb', line 57

def initialize(image, options={})
  super image

  @quality = 75

  self.quality = options[:quality] if options.has_key?(:quality)
end

Instance Attribute Details

#qualityObject

Returns the value of attribute quality.



55
56
57
# File 'lib/vips/writer.rb', line 55

def quality
  @quality
end

Instance Method Details

#to_memoryObject



69
70
71
# File 'lib/vips/writer.rb', line 69

def to_memory
  buf_internal @quality
end

#write(path) ⇒ Object



65
66
67
# File 'lib/vips/writer.rb', line 65

def write(path)
  write_gc "#{path}:#{@quality}"
end