Tagged Questions
0
votes
0answers
53 views
Image upload and free select cropping not working in latest rails versions
I'm currently trying to code a custom image cropping system similar to other ones on the internet where a user can select any cropping area of image freely from mouse and then have their image cropped ...
0
votes
3answers
166 views
Automatically crop image after save in rails with predefined height, width, and (x , y) index
I am searching the way to automatically crop image after save of Image:
I came across a tedious problem when transforming html to image in rails.
My problem is when html is converted to image then ...
0
votes
2answers
139 views
How to crop and show external image with specific size?
I get image url via API. It usualy have 360x200 but sometimes 233x350 etc..
I would like to crop them all to specific size 260x186. And show them using
<%= image_tag image_url if ...
2
votes
2answers
534 views
Rails 3.0 Image Cropping with Paperclip and s3 on Heroku
I am having an issue I have yet to see elsewhere using the image cropping from this railscast
It's on my production app, and I am only getting this exception every once and a while, and I haven't ...
0
votes
3answers
411 views
Resize / crop images for android devices (Rails)
I need to resize/crop images in different resolutions for Android App.
I know, that it's a common question, but I could not find a solution that would suit for me.
The problem is consist in the fact ...
1
vote
2answers
1k views
How to crop and then resize with Paperclip
I have a photo attachment which I'm saving using Paperclip. However, I'd like to process the photo first before saving by cropping it down and then resizing to the final size:
e.g. I have a 900x900 ...
6
votes
1answer
2k views
devise registrations controller + paperclip
i am trying to override devise registrations controller so that user would be able to upload his avatar along with changing other data, and crop the userpic after upload.
i added all necesarry user ...
2
votes
2answers
888 views
Accessing model from inside Carrierwave uploader
I'm trying to implement a manual crop for a web application I'm working on, and I have this so far:
version :croppedversion do
process :manualcrop => [model.crop_x, model.crop_y, ...
1
vote
1answer
392 views
How to save cropped image of an image URL without saving the original image? (in Rails using Paperclip or other plug-ins)
Hi all
I have an app now showing photos from URL, not from my own database (file system).
For example, a photo from Facebook:
...
1
vote
1answer
456 views
Using attachment_fu, how do you edit an existing photo, update only thumbnails, and leave original unedited?
After a photo is uploaded and created using attachment_fu, is there a way to edit just the thumbnails and leave the original as it is? I understand how to do the resizing or cropping, but it's ...
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:
...