Tagged Questions
2
votes
2answers
117 views
How to make Paperclip crop and NOT scale an attached image?
I want Paperclip to crop, and not scale (see :full1 in this excerpt)
class Graphic < ActiveRecord::Base
has_attached_file :image, :styles => { :full0 => "940x1000#" #want it to scale, and ...
1
vote
2answers
123 views
Dynamic image watermarking - injecting model attributes into watermarks
I'm currently using this Paperclip::Processor to watermark images with imagemagick's composite command.
It allows me to inject a pre-made single file as a watermark, which lives in my public file.
...
0
votes
0answers
78 views
Rail3 - Paperclip/ImageMagick - How to process any image in a model's styles
I want to create missing.jpg images but I don't want to use picasa or some other program to resize and process them.
Is there a way to use paperclip's styles of a model to process an image locally ...
0
votes
1answer
62 views
imagemagick 'identify command' error only from safari when uploading photo after processing
I believe this error is a problem with my javascript in Safari (and mobile safari) as I can upload photos from chrome no problem.
What I've got is a web-based mobile app, and users need to be able ...
1
vote
0answers
184 views
Image cropping with paperclip 3.3.1 in rails
I have followed the cropping tutorial http://asciicasts.com/episodes/182-cropping-images.
Everything worked fine, image uploaded successfully but cropping is not working. When I select certain region ...
1
vote
1answer
279 views
How to resize and crop in ImageMagick and Paperclip?
The output image size should be 800x200 or smaller. How to achieve the following?
If the source image is smaller in both dimensions, do not modify.
If the source image is larger in both dimensions, ...
0
votes
2answers
224 views
Rails 3/Paperclip: How to extract path as string for image processing? (NOT ImageMagick!)
I'm running a web app that uploads images through paperclip, then performs image processing on them in an opencv-backed ruby extension gem, which requires a string path to run. The code I've been ...
0
votes
1answer
181 views
filename..extension // Paperclip reprocess
Some kind of problem I can't resolveā¦
In some app, a method called on :before_create was prefixing the file's extension with a double-dot (ex. /images/13402/medium/hey-1..jpg)
The problem is fixed ...
1
vote
2answers
791 views
how to generate thumbnails in CakePHP?
I'am trying to generate thumbnails with uploaded images in CakePHP.
I have worked with Rails and I used paperclip for that purpose, is there any way to do the same with CakePHP?
to be clear, I want ...
0
votes
1answer
507 views
Rails: Manage upload & processing of photo/video
I would like to manage uploads of photos (resize, crop, etc.) and videos (resize, crop, conversion with ffmpeg, background processing) in Rails.
I have tried these two common gems:
Carrierwave
...
0
votes
2answers
289 views
How come files uploaded to S3 via URL have no extension?
I've got picture uploads working with s3 on heroku no problem.
I also have a method that enables users to upload from a web-address.
Unfortunately, it seems as though when pictures are uploaded ...
3
votes
2answers
548 views
Custom ImageMagick scripts on Rails (Paperclip ?)
I would like to use some of these scripts: http://www.fmwconcepts.com/imagemagick/ for processing images uploaded to my Rails app. How can I achieve it? Can I set it up in Paperclip somehow or need to ...
4
votes
4answers
783 views
Rails and paperclip, delete the record but don't delete the attachment
I'm using rails and paperclip to save images, the usual way.
When a record with an attachment is destroyed, the attachment also gets deleted from the file system.
99% of the time this is the ...
2
votes
1answer
385 views
Avoid creation of styles if `validates_attachment_content_type` fails
I am using the Paperclip gem to manage file uploads in a Rails 3 app. I have just added
validates_attachment_content_type :logo, :content_type => ['image/jpeg', 'image/png', 'image/gif'], ...
0
votes
1answer
566 views
what are the paperclip rails3 file_field {options}
I installed paperclip and use it to handle photo attachment.
I have a simple form where i can upload photo's works perfect by the way.. But i want to adjust the "browse" button, for example change ...
4
votes
1answer
3k views
Troubles setting up Paperclip + AWS S3 for image storing in our Rails3/Heroku App
We have already built a rails app that has several users and an image for each of them. Doing all of the dev work on our localhost, we have working seeds for users & photos...but now that we are ...
6
votes
2answers
665 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 ...
0
votes
2answers
536 views
How to create an RMagick image from a Paperclip attachment?
Suppose I've got an image stored as a paperclip attachment. I want to use this image in RMagick to compose other images. But when I ask paperclip about it, I'm handed a URL which hands back the image ...
1
vote
1answer
236 views
Only convert images of a certain file type with paperclip styles
I want to convert uploaded images that are not jpegs or pngs to to be jpegs or pngs using paperclip. Problem is i dont want to convert jpegs to pngs or pngs to jpegs, just leave them as the file type ...
1
vote
1answer
700 views
Rails Paperclip - Can't get thumbnail to resize properly
I'm having difficulty creating a thumbnail, for some reason it's not chopping off the way I want. I typically post landscape photos so the dimensions are correct, however when the photo has to be auto ...
2
votes
2answers
2k views
Rails and Paperclip… don't save the original image, just the styles?
In paperclip when you save an image with lots of style and sizes it also saves the original.
But in my app it's not necessary to save the original, just the style will do, what I was wondering was ...
2
votes
2answers
280 views
Rails and Paperclip, use a different image, not an uploaded one to be processed
I was wondering there was a way to specify a different image for the one to be processed by paperclip?
So instead of the user uploading an image, an image url would be used instead or an exsiting ...
0
votes
3answers
2k views
multiple paperclip attachements with watermark processor
I'm having a ton of trouble with uploading multiple attachments with paperclip and processing them with a watermark.
I have 2 models, Ad and Photo.
The Ad has_many :photos and the Photo belongs_to ...
5
votes
1answer
2k views
Paperclip Resize to fit a rectangular box
I have a rectangular image for example 30x800 pixels
How I can scale it with paperclip to preserve the aspect ratio to a 100x100 pixel image with borders filling the empty area ?
an example : ...
5
votes
3answers
3k views
Image orientation and validation with Paperclip?
I'm looking for a way to determine image orientation preferably with Paperclip, but is it even possible or do I need to user RMagick or another image library for this?
Case scenario: When a user ...