AckPaperclipWatermark
Fork of PaperclipWatermark Paperclip Watermark processor
Usage
Edit your paperclip model:
# app/models/assets.rb
class Asset < ActiveRecord::Base
attr_accessible :attachment
# Paperclip image attachments
has_attached_file :attachment, :processors => [:watermark],
:styles => {
:thumb => '150x150>',
:original => { :geometry => '800>', :watermark_path => "#{Rails.root}/public/images/logo.png" }
},
:url => '/assets/attachment/:id/:style/:basename.:extension',
:path => ':rails_root/public/assets/attachment/:id/:style/:basename.:extension',
:default_url => "/images/:style/mising.png"
end
Installation
Install from github:
gem 'ack-paperclip-watermark', :github => 'ack43/paperclip-watermark'
And then execute:
$ bundle install
Or install it yourself as:
gem install paperclip-watermark
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request