Sha256: 8a8ed8b13aa619d1944a9d55c98a07d82cfb45b5bd62ce5e573d0cf0af217014
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
require 'mini_magick' require 'dragonfly' require 'dragonfly-minimagick/utils' module Dragonfly module Minimagick class Encoder include Utils include Dragonfly::Configurable configurable_attr :supported_formats, [ :ai, :bmp, :eps, :gif, :gif87, :ico, :j2c, :jp2, :jpeg, :jpg, :pbm, :pcd, :pct, :pcx, :pdf, :pict, :pjpeg, :png, :png24, :png32, :png8, :pnm, :ppm, :ps, :psd, :ras, :tga, :tiff, :wbmp, :xbm, :xpm, :xwd ] def encode(temp_object, format, encoding={}) format = format.to_s.downcase throw :unable_to_handle unless supported_formats.include?(format.to_sym) minimagick_image(temp_object) do |image| if image[:format].downcase == format temp_object # do nothing else image.format(format) image end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dragonfly-minimagick-0.0.1 | lib/dragonfly-minimagick/encoder.rb |