Method: Vips::Process::Quality#quality
- Defined in:
- lib/vips-process/quality.rb
#quality(percent = 75) ⇒ Object
Changes quality of the image (if supported by the file format)
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/vips-process/quality.rb', line 8 def quality(percent=75) manipulate! do |image| if jpeg? || @_format == JPEG @_format_opts ||= {} @_format_opts[:quality] end image end self end |