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, #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.



49
50
51
52
53
54
55
# File 'lib/vips/writer.rb', line 49

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.



47
48
49
# File 'lib/vips/writer.rb', line 47

def quality
  @quality
end

Instance Method Details

#to_memoryObject



61
62
63
# File 'lib/vips/writer.rb', line 61

def to_memory
  buf_internal @quality
end

#write(path) ⇒ Object



57
58
59
# File 'lib/vips/writer.rb', line 57

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