Paperclip is a library for the Ruby on Rails framework which makes dealing with file attachments easier. In addition to dealing with standalone files, the library provides convenience methods for creating image thumbnails.
35
votes
12answers
19k views
rails paperclip and passenger `is not recognized by the 'identify' command`
When I upload a photo, my model fails validation, err well even without any validations I'm returned this error:
/tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command. and ...
13
votes
6answers
6k views
Paperclip exception : Paperclip::AdapterRegistry::NoHandlerError
Using Paperclip 3.0.1 in rails 3.2.2 I got this error:
**Paperclip::AdapterRegistry::NoHandlerError**
(No handler found for "2009-11-29-133527.jpg"):
In my model I have:
class Product < ...
3
votes
2answers
1k views
Paperclip::NotIdentifiedByImageMagickError in Spree::Admin::ImagesController#create
I am attempting to setup Spree for the first time. Everything was going well until I hit the image upload. I have installed Imageamgick using homebrew on Mac OSX Mountain Lion. Uploading any image ...
2
votes
1answer
2k views
base64 photo and paperclip -Rails
I want to handle a base64 photo with paperclip. When I try:
photo = Photo.new
string = base64string
photo.photo = StringIO.new(Base64.decode64(string))
photo.save
It does not work.
Why?
Thanks ...
15
votes
2answers
12k views
Smarter paperclip validations
I'm using paperclip in a rails app and have the following three validations in my model
validates_attachment_presence :photo
validates_attachment_size :photo, ...
31
votes
3answers
10k views
Rails 3 paperclip vs carrierwave vs dragonfly vs attachment_fu
I'm working on upgrading a Rails 2.3.11, Ruby 1.9.2 app to Rails 3.0.10, and attachment_fu no longer works.
I'm looking at changing to paperclip, carrierwave, or dragonfly for file uploads, or maybe ...
17
votes
2answers
10k views
Simple cropping with Paperclip
I would like to crop images on upload using Paperclip to get square thumbs from the center of the original picture. I find out a method in documentation that seems to do exactly what I want:
...
15
votes
2answers
3k views
Rails: Paperclip & previews?
You know on some sites when you're asked to upload, say, an avatar, you click on the button, select your file, then hit OK, but before you Submit the page (as in, no record is created/updated), a ...
12
votes
3answers
3k views
Rails 3, paperclip + S3 - Howto Store for an Instance and Protect Access
I have a Rails 3 app with paperclip, with the intent to store data on S3.
In the app, Users belong to an instance.
I would like the data stored across all the models per instance. And would like to ...
7
votes
5answers
6k views
Paperclip renaming files after they're saved
How do I rename a file after is has been uploaded and saved?
My problem is that I need to parse information about the files automatically in order to come up with the file name the file should be ...
7
votes
2answers
4k views
Set path for original images using paperclip in Rails?
The situation
I have a simple model with an attached image using paperclip, which has a couple of processed styles for it (thumbnail, full, feature). At this point it works as it should, and makes a ...
10
votes
6answers
5k views
Paperclip Error
I'm getting the following error in my development.log
[paperclip] An error was received while processing: #<Paperclip::NotIdentifiedByImageMagickError: /tmp/stream28514-0 is not recognized by the ...
6
votes
3answers
6k views
File upload with Sinatra
I am trying to be able to upload files with Sinatra. I have the code here, but I'm getting the error "method file_hash does not exist" (see /lib/mvc/helpers/helpers.rb).
What is going on here? Is ...
7
votes
3answers
2k views
How do I tell paperclip to not save the original file?
How do I tell Paperclip not to save the original file when it is uploaded? Or even better, to store a scaled version of the file as the original?
3
votes
1answer
630 views
Exception when trying to upload file from Flex to Rails (using paperclip)
I'm trying to upload a Dynamically generated file from Flex (PNG image) to Ruby on Rails Server back end using the following code (from Flex on Rails book):
public function save():void
...
4
votes
4answers
3k views
Imagemagick issue on Lion installed with Homebrew
I am trying to use the Paperclip gem on a Rails project so followed the docs and first installed Imagemagick using the Homebrew recipe.
I added to my model my attachment
has_attached_file ...
1
vote
4answers
2k views
Adding :multipart => true throws Undefined Method “name” error
I'm drawing a blank on this one. Here's my problem:
Short Version
My image#create action is failing on the image.save call and throwing Undefined method "name" for nil:NilClass. The Image model ...
51
votes
6answers
10k views
How can I set paperclip's storage mechanism based on the current Rails environment?
I have a rails application that has multiple models with paperclip attachments that are all uploaded to S3. This app also has a large test suite that is run quite often. The downside with this is ...
29
votes
5answers
9k views
46
votes
5answers
8k views
How Do I Use Factory Girl To Generate A Paperclip Attachment?
I have model Person that has many Images, where images has a Paperclip attachment field called data, an abbreviated version displayed below:
class Person
has_many :images
...
end
class Image
...
14
votes
6answers
7k views
How do I find an image on a page with Cucumber / Capybara in Rails 3
I am using Cucumber / Capybara with Rails 3 and am trying to validate the existence of an image after upload. I'm not sure how to check the url of the image to validate it.
I have the following ...
8
votes
2answers
6k views
Rails 3.1 + Paperclip + jQuery fileupload
I've been looking for a way to set up Ruby on Rails 3.1 with Paperclip and jQuery fileupload. Looking at a tutorial at jQuery fileupload page I got the system set up but I can't find a way to make ...
7
votes
1answer
8k views
Rails - Paperclip, getting width and height of image in model
Trying to get the width and height of the uploaded image while still in the model on the initial save.
Any way to do this?
Here's the snippet of code I've been testing with from my model. Of course ...
7
votes
1answer
3k views
Rails - Paperclip - How to Check the Image Dimensions before saving
I have a Rails 3 app with paperclip.
I want to prevent images with a width/height of LTE 50x50 from being saved by paperclip.
Is this possible?
5
votes
1answer
4k views
Rails Paperclip & Multiple File Uploads
I am looking for a solution to give the user the ability to upload multiple images through one file_field. I have looked in to options such a Jquery File Upload and Uploadify but have yet to come ...
12
votes
4answers
5k views
Attachment_fu or Paperclip for Rails3
I have just upgraded to rails3 and when I installed my usual attachment_fu plugin failed. So I started googling it and although I did manage to find a rails3 version there seemed to be a lot more ...
3
votes
3answers
1k views
Ruby on Rails, Paperclip: “identify” command working in cmd but not in app
I've installed ImageMagick on my Windows 7 64bit and I have the Paperclip Gem. My User model looks like this:
class User < ActiveRecord::Base
# Paperclip
has_attached_file :photo,
...
3
votes
1answer
2k views
How can I change the upload directory for paperclip on heroku to /tmp?
I need to upload files and then parse them using paperclip?
Currently it is uploaded in the /system folder, which isn't allowed in heroku.
I don't need the uploads to be persistent...I parse it and ...
18
votes
2answers
13k views
Why do I get an "undefined method for `has_attached_file` when installing PaperClip?
I just installed the plugin for Paperclip and I am getting the following error message but I am not sure why:
NoMethodError (undefined method `has_attached_file' for #<Class:0x10338acd0>):
...
14
votes
1answer
3k views
How to copy a file using Paperclip
Does anyone know of a way to copy files with Paperclip using S3 for storage? Before I try to write my own, I just wanted to make sure there wasn't already a way to do this. Thanks
7
votes
2answers
11k views
Multiple files uploading on Ruby on Rails 3
I would like to upload multiple pictures to my Rails 3 application. I am currently using Paperclip to upload a picture, and I have some post processing operations assigned to the model Photo.
I saw ...
4
votes
2answers
1k views
paperclip + ActionMailer - Adding an attachment?
I have a paperclip'd file that I want to add as an attachment to my email....
class UserMailer < ActionMailer::Base
def XXXXXX_notification(record)
@record = record
attachments ??? ...
3
votes
2answers
2k views
Paperclip attachments with dynamic style sizes from Model
Using Rails 2, I try to separate different, dynamic image sizes trough another Model from the Paperclip-Model. My current approach, using a Proc, looks the following:
class File < ...
1
vote
1answer
2k views
Nested form using paperclip
I have a model called posts, and it has many attachments.
The attachments model is using paperclip.
I made a standalone model for creating attachments which works just fine, this is the view as ...
6
votes
2answers
645 views
Paperclip process images only
I would like to use a single file-field for multiple formats. It was my understanding that Paperclip was smart enough to only scale images and leave other formats alone, but this doesn't seem to work ...
2
votes
2answers
1k views
Weird paperclip error message
I have a Rails 3 app using Paperclip 2.3.8. I have the following specified in my model:
validates_attachment_content_type :file,
:content_type => ['image/jpeg', 'image/png', 'image/gif',
...
2
votes
1answer
2k views
Problem using the 'paperclip' gem and Ruby on Rails 3
I am using Ruby on Rails 3 on a MacOs running 'Snow Leopard' v1.6.5.
I want to use the 'paperclip' gem so I included it in my Gemfile like this:
gem 'paperclip', "~> 2.3"
Then, in the Terminal ...
0
votes
0answers
76 views
Paperclip not displaying the error message
I am using rails 3.2.6. I have added this in my models file:
has_one :avatar, :as => :imageable, :dependent => :destroy
validates_presence_of :avatar, :message => "can't be empty"
But I ...
9
votes
1answer
1k views
Paperclip File Not Found Error
I just switched from a paperclip rails plugin to a paperclip gem. The project is a rails 2.3 application and I am using paperclip 2.7.2 gem.
I am getting the following odd error:
identify: unable to ...
4
votes
1answer
1k views
Multi-step form in Rails 3 with Paperclip attachments
I'm creating a multi-part form in the style that Ryan Bates describes here:
http://railscasts.com/episodes/217-multistep-forms
http://asciicasts.com/episodes/217-multistep-forms (text-based version)
...
1
vote
1answer
580 views
Pixel RGB with ImageMagick and Rails
I'm currently uploading an image with PaperClip and ImageMagick. I would like to get the image's average color so I'm doing this (with a before_create hook):
def get_average_color
img ...
1
vote
1answer
598 views
Errors when using paperclip plugin for rails in production. Image not being saved to server
I am running rails 3 and paperclip 2.3.4. In development on OS X every thing runs great but production there are some issues that I can't quite figure out. If anyone have suggestions please let me ...
1
vote
1answer
1k views
Uploadify + Paperclip + Rails nested association before_save
I need to create a model application form where models can fill it and add pictures to it.
I'm following this example with Uploadify, Paperclip and Rails 3 approach.
...
0
votes
1answer
277 views
Rails Paperclip gem wrong number of arguments error
I'm working on my first RoR project and attempting to use the Paperclip gem, but I'm running into an error I can't seem to figure out:
wrong number of arguments (1 for 0)
...
0
votes
1answer
471 views
paperclip gem validation error - 'filename' is not recognized by the 'identify' command
I'm trying to get the paperclip gem to upload images on my production server (ubuntu 12.0.4, apache2, phusion passenger and rvm) and for each attachment I get three lots of this validation error:
...
0
votes
1answer
387 views
Can we find out when a Paperclip download is complete?
I have an application where I need to know when a user's Rails/Paperclip file download is complete. My app is set up to interact with Amazon S3 and I need to run a javascript function when the user ...
27
votes
3answers
7k views
How to set file programmatically using Paperclip
I have rake task to seed the application with random data using the faker gem. However, we also have images (like logos) that we want uploaded in this rake task.
We already have Paperclip set up, but ...
32
votes
3answers
10k views
Rails Paperclip how to delete attachment?
I am using Paperclip (w/ Amazon s3) on Rails 3. I want to delete an existing attachment without replacing it using an update action.
I've only found one example of this here and could not get that to ...
16
votes
2answers
3k views
Resize existing images to new style in paperclip & RMagick
I've been using paperclip to upload and auto-resize photos in my Rails app, and I love it. Only problem is about every other month my crazy manager decides he wants a new size to display the photos ...
12
votes
3answers
9k views
Heroku: Running imagemagick w/ paperclip
I have installed image magick on my mac os x computer and now I want to deploy it to heroku. I've installed the the paperclip plugin on heroku but I get this error when uploading an image:
...