Created
February 19, 2010 11:36
-
-
Save dimiro1/308646 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Paperclip | |
class Watermark < Processor | |
class InstanceNotGiven < ArgumentError; end | |
def initialize(file, options = {},attachment = nil) | |
super | |
puts attachment.to_yaml | |
@file = file | |
@current_format = File.extname(@file.path) | |
@basename = File.basename(@file.path, @current_format) | |
@watermark = RAILS_ROOT + "/watermark/overlay.png" | |
@current_geometry = Geometry.from_file file # This is pretty slow | |
@watermark_geometry = watermark_dimensions | |
end | |
def watermark_dimensions | |
return @watermark_dimensions if @watermark_dimensions | |
@watermark_dimensions = Geometry.from_file @watermark | |
end | |
def make | |
dst = Tempfile.new([@basename, @format].compact.join(".")) | |
watermark = " \\( #{@watermark} -extract #{@current_geometry.width.to_i}x#{@current_geometry.height.to_i}+#{@watermark_geometry.height.to_i / 2}+#{@watermark_geometry.width.to_i / 2} \\) " | |
command = "-gravity SouthEast " + watermark + File.expand_path(@file.path) + " " + File.expand_path(dst.path) | |
begin | |
success = Paperclip.run("composite", command.gsub(/\s+/, " ")) | |
rescue PaperclipCommandLineError | |
raise PaperclipError, "There was an error processing the watermark for #{@basename}" if @whiny_thumbnails | |
end | |
dst | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment