ruby - 如何使用 Imagemagick 给图像加水印?

标签 ruby ruby-on-rails-3 imagemagick paperclip spree

我想我应该添加这个,因为我花了很长时间才让它工作,而且我看到很多人遇到问题。

我正在尝试向 Spree (Rails) 应用程序中的图像模型添加水印处理器。我收到如下错误:

处理流的水印时出错

composite: 无法打开图片

没有这样的文件或目录@error/blob.c/OpenBlob/2588

@error/png.c/ReadPNGImage/3633

PaperclipCommandNotFoundError

PaperclipCommandLineError

最佳答案

我将以下内容添加到 RAILS_ROOT/lib/paperclip_processors/watermark.rb:

module Paperclip
  class Watermark < Processor
    # Handles watermarking of images that are uploaded.
    attr_accessor :current_geometry, :target_geometry, :format, :whiny, :convert_options, :watermark_path, :overlay, :position

    def initialize file, options = {}, attachment = nil
       super
       geometry = options[:geometry]
       @file = file
       @crop = geometry[-1,1] == '#'
       @target_geometry = Geometry.parse geometry
       @current_geometry = Geometry.from_file @file
       @convert_options = options[:convert_options]
       @whiny = options[:whiny].nil? ? true : options[:whiny]
       @format = options[:format]
       @watermark_path = options[:watermark_path]
       @position = options[:position].nil? ? "SouthEast" : options[:position]
       @overlay = options[:overlay].nil? ? true : false
       @current_format = File.extname(@file.path)
       @basename = File.basename(@file.path, @current_format)
     end

     # TODO: extend watermark

     # Returns true if the +target_geometry+ is meant to crop.
      def crop?
        @crop
      end

      # Returns true if the image is meant to make use of additional convert options.
      def convert_options?
        not @convert_options.blank?
      end

      # Performs the conversion of the +file+ into a watermark. Returns the Tempfile
      # that contains the new image.
      def make
        dst = Tempfile.new([@basename, @format].compact.join("."))
        dst.binmode

        command = "convert"
        params = [fromfile]
        params += transformation_command
        params << tofile(dst)
        begin
          success = Paperclip.run(command, params.flatten.compact.collect{|e| "'#{e}'"}.join(" "))
        rescue PaperclipCommandLineError
          raise PaperclipError, "There was an error resizing and cropping #{@basename}" if @whiny
        end

        if watermark_path
          command = "composite"
          params = %W[-gravity #{@position} #{watermark_path} #{tofile(dst)}]
          params << tofile(dst)
          begin
            success = Paperclip.run(command, params.flatten.compact.collect{|e| "'#{e}'"}.join(" "))
          rescue PaperclipCommandLineError
            raise PaperclipError, "There was an error processing the watermark for #{@basename}" if @whiny
          end
        end

        dst
      end

      def fromfile
        File.expand_path(@file.path)
      end

      def tofile(destination)
        File.expand_path(destination.path)
      end

      def transformation_command
        scale, crop = @current_geometry.transformation_to(@target_geometry, crop?)
        trans = %W[-resize #{scale}]
        trans += %W[-crop #{crop} +repage] if crop
        trans << convert_options if convert_options?
        trans
      end
  end
end

更新:如果您使用的是新版本的回形针 (3+),开始 block 现在应该如下所示:

begin
  Paperclip.run(command, params.join(' '))
rescue Cocaine::ExitStatusError => e
  raise Paperclip::Error, "There was an error processing the watermark for #{@basename}" if @whiny
rescue Cocaine::CommandNotFoundError => e
  raise Paperclip::Errors::CommandNotFoundError.new("Could not run the `convert` command. Please install ImageMagick.")
end

然后是 image_decorator.rb 模型:

require 'paperclip_processors/watermark'

Spree::Image.class_eval do

  has_attached_file :attachment,
                    :processors => [:thumbnail, :watermark],
                    :styles => { :mini => '48x48>', :small => '100x100>', :product => '160x160#',
                      :large => {
                        :geometry => '460x680>',
                        :watermark_path => "#{Rails.root}/public/spree/watermark.png",
                        :position => 'SouthWest',
                        :format => :png
                      }
                    },
                    :default_style => :product,
                    :url => '/spree/products/:id/:style/:basename.:extension',
                    :path => ':rails_root/public/spree/products/:id/:style/:basename.:extension'

end

关于ruby - 如何使用 Imagemagick 给图像加水印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9479990/

相关文章:

c++ - 在 openMPI、C++ 中发送 ImageMagick 对象

ruby-on-rails - 被 nokogiri 在 ruby​​ on rails 中转换为 "\u0092"

ruby-on-rails - heroku:Gemfile.lock 是必需的问题

ruby-on-rails - rails new project_name 使用 rvm

ruby-on-rails-3 - 错误-未初始化的常数Devise::IndifferentHash (NameError)

ruby-on-rails - Rails 欧洲格式 CEST/CET 的统一 DateTime 时区

ruby-on-rails - rails 迁移: postgresql for md5 of random string as default

php - 将 MySQL 5.1 更新到 5.6

command-line - 如何使用 ImageMagick 自动裁剪桶形失真图像?

PHP ImageMagick getImageType 返回数组...如何关联类型?