1

この例 (http://dimaspriyanto.com/2010/06/08/image-watermarking-with-paperclip/) に従って、アップロードするすべての写真に透かしを入れるようにしています (今のところ、大きなサイズに制限しています)。 1)。

そして、何を推測しますか?うまくいきません!

だから私の写真モデルでは、私は持っています

require 'paperclip_processors/watermark'
  has_attached_file :image,
                  :styles => {:medium => "300x300^", :thumb => "150x105^",
                      :large => {
                          :geometry => "460",
                          :watermark_path => ":rails_root/public/images/watermark.png"
                      }
                  },
                  :url => "/images/:style/:id_:style.:extension",
                  :path => ":rails_root/public/images/:style/:id_:style.:extension"

/lib/paperclip_processors/watermark.rb には、次のものがあります。

module Paperclip
  class Watermark < Processor

    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

      def crop?
        @crop
      end

      def convert_options?
        not @convert_options.blank?
      end

      def make
        dst = Tempfile.new([@basename, @format].compact.join("."))
        dst.binmode

        if watermark_path
          command = "composite"
          params = "-gravity #{@position} #{watermark_path} #{fromfile} #{transformation_command} #{tofile(dst)}"
        else
          command = "convert"
          params = "#{fromfile} #{transformation_command} #{tofile(dst)}"
        end

        begin
          success = Paperclip.run(command, params)
        rescue PaperclipCommandLineError
          raise PaperclipError, "There was an error processing the watermark for #{@basename}" if @whiny
        end

        dst
      end

      def fromfile
        "\"#{ File.expand_path(@file.path) }[0]\""
      end

      def tofile(destination)
        "\"#{ File.expand_path(destination.path) }[0]\""
      end    

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

  end

end

透かしは /public/images/ にあり、プロセスでクラッシュしません。つまり、写真はすべてのサイズでアップロードされますが、大きなものは透かしなしのヌードです。

何か案が?

4

1 に答える 1

0

これが機能するプリプロセッサです(私はそれを使用しています) https://gist.github.com/2499137

モデルのサンプル コードは次のとおりです。

has_attached_file :data,
                  :processors => [:watermark],
                  :url  => "/ckeditor_assets/pictures/:id/:style_:basename.:extension",
                  :path => ":rails_root/public/ckeditor_assets/pictures/:id/:style_:basename.:extension",
                  :styles => {
                    :thumb => '118x100#',
                    :content => {
                      :geometry => '700>',
                      :watermark_path => "#{Rails.root}/public/images/watermark.png",
                      :position => 'SouthWest'
                    },
                  }
于 2012-11-22T18:13:19.443 に答える