Method: VIPS::TIFFWriter#compression_str
- Defined in:
- lib/vips/writer.rb
#compression_str ⇒ Object
142 143 144 145 146 147 148 |
# File 'lib/vips/writer.rb', line 142 def compression_str case @compression when :jpeg then "#{@compression}:#{@quality}" when :lzw, :deflate then "#{@compression}:#{@predictor}" else @compression end end |