Tagged Questions
0
votes
0answers
6 views
Paperclip configuration to use with openshift
I'm trying to configure paperclip to use it with openshift but I can't do it right, any suggestion?
has_attached_file :photo,
:styles => {
:thumb=> "100x100#",
...
1
vote
1answer
30 views
paperclip saving files but not reading them
I'm working on a project that requires attachments. Specifically, I need to attach pictures to a product model.
That said, I followed a railscast (link here) and I followed most of the instructions ...
0
votes
1answer
27 views
show paperclip ( images) which stores in another app, current app already connect with the external database,Ruby on rails
I have a new app, and I want share the common part with another ror app.
For example, I have a MVC named showcase for showing images in the previous app, I want have the same one in my new app too.
...
0
votes
1answer
37 views
How to add Link_to to an Uploaded Thumbnail
I'm trying to figure out the syntax to turn an uploaded project thumbnail in Ruby on Rails via Paperclip into a clickable link which leads to the projects details:
projects\index.html.erb
<% ...
0
votes
2answers
566 views
Resize Error - Paperclip::Errors::NotIdentifiedByImageMagickError
I just installed paperclip into my app to upload images, and everything was working well until I tried to add the styles to make the image resize. (I can upload images fine before I add this code)
on ...
0
votes
2answers
68 views
Rails - cannot display an image uploaded to Amazon S3
I have these two models:
user:
has_many :commercials, :dependent => :destroy, :inverse_of => :user
commercial:
belongs_to :user, :inverse_of => :commercials
has_attached_file ...
0
votes
0answers
92 views
Rails paperclip NoHandlerError
I'm using paperclip 3.4.0. And I upload dynamic number of images using in view:
<div class="field">
<%= f.label 'Add images' %><br />
<%= ...
0
votes
1answer
107 views
Rails paperclip - Upload original image and thumbnail
I'd like to upload not only the original image, even create a thumbnail and store both files in S3.
I understood that with the following lines it was fine:
class Asset < ActiveRecord::Base
...
0
votes
2answers
110 views
Rails paperclip multiple attachment - Getting attached files
I've achieved to upload multiple images using paperclip.
And are stored to a private path:
:path => ":rails_root/data/images/:id/:basename.:extension"
Now I would like send them with a restful ...
0
votes
1answer
309 views
Rails paperclip - Attach multiple images
I'm trying to attach with paperclip a multiple number of images to a component.
As this tutorial
http://www.tkalin.com/blog_posts/multiple-file-upload-with-rails-3-2-paperclip-html5-and-no-javascript
...
0
votes
0answers
99 views
Rails paperclip - Adding dynamic multiple images
I'm trying to add a dynamic number of pictures to an element called "component".
Looking around I've created this code:
component.rb
class Component < ActiveRecord::Base
has_many :images
...
0
votes
1answer
48 views
Determining Image presence and absence that has certain style - Paperclip rails
Is there a way to determine the presence of certain image that has certain style attribute.
For example to determine image existence that has no style, we generally do -
<% if ...
0
votes
2answers
232 views
Image upload error with Paperclip- Rails
I am unable to upload the image as I am getting error in upload method of
user controller at line number 3 i.e. for @user.update_attributes(params[:user]).
My upload method code -
def upload
...
0
votes
1answer
97 views
Paperclip + Rails with load balanced machines
How do I get Paperclip image uploads to work on a Rails app running on 8 machines (load-balanced)?
A user can upload an image on the app. The image is stored on one of the machines. The user later ...
2
votes
1answer
165 views
Path for Paperclip missing.png
using paperclip's default/standard configuration, a model without an image will result in having a path http://localhost:3000/avatars/thumb/missing.png
I am using paperclip with S3, and I would like ...
0
votes
1answer
58 views
Rendering a Rails partial to an image
So, I have a problem and my initial question is: Is this possible?
I'm allowing people to customize the appearance of something using css, and then once they save it I want to turn it into thumbnails ...
0
votes
3answers
163 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
1answer
229 views
paperclip image size notations
At the beginning it seemed to me a like a mistype but now as I see more examples I realize its not..
I see :thumb => "300x300>"
or :thumb => "100x100#"
and even :thumb => "180"
what do ...
3
votes
1answer
159 views
AutoSmusher for amazon S3 to optimise images?
Any ruby implementation with paperclip to autosmush amazon s3 images?
PS: I googled and got this: https://github.com/grosser/smusher and works pretty nicely on my local machine. But to use something ...
0
votes
1answer
52 views
making the images secure so as to make it not accessed by others
I use paperclip gem to store images to s3 and it is displayed with the url of amazon. What i need is, i want to store images in s3 and i want only the users to view the images by using the url. Now if ...
2
votes
1answer
187 views
How to save image as progressive image using paperclip?
How to save image as progressive image using paperclip/Imagemagick?
Code I am using:
has_attached_file :photo, {
:styles => {
:medium => ["200x200#", :jpg] ,
:small ...
0
votes
1answer
52 views
how the url of the image is known while using paperclip?
I tried PaperClipExample and it is working fine. I use s3 to store images. And i want to know how the images are displayed. To say exactly, i have
pic_file_name
pic_content_type
pic_file_size
...
3
votes
2answers
505 views
Can one use paperclip to upload multiple files using one multi file selection input?
So I'm using paperclip in my rails 3.1 app,
I am adding images to an item using relationships so that I can have multiple images per item.
What I'd like to do is be able to click the browse button ...
0
votes
2answers
104 views
passing a paperclip image from the controller to a view in rails
I have a model that has an image attached to it that I want to be passed through a controller into a view. This is the way I have tried myself but it does not work:
Model:
class CustomForm < ...
0
votes
1answer
128 views
handling an array of images in rails/paperclip
I am allowing a user on my website to upload up to three images. So in my form I have these elements:
<label>Additional Images*<span class="note">(Maximum: 3, 200 pixels ...
0
votes
1answer
118 views
Multiple images per record. How to show just one on index partial?
I have an app which shows mugs (for drinking), each mug can have many photos.
The mugs are displayed as partials on the index page and when clicked the user gets taken to the mugs show page and they ...
0
votes
2answers
403 views
Access Paperclip avatar from other views/resources in rails?
Currently I'm using Paperclip to handle my avatar uploads and usage in Rails 3. I have a Users resource (With controller, model, views etc.) where I'm uploading the avatars to (using the users/new ...
0
votes
1answer
246 views
Ruby on Rails - Paperclip getting Image
i'm using Paperclip to handle the uploading of my photos to my App but am having some issues retrieving them
I can add/remove/display all images successfully but how can I retrieve only one photo of ...
0
votes
2answers
359 views
If user photo not present then display generic image
In my application I have the option for a user to upload an image for a profile picture through paperclip.
Want I want to do in the index.html.erb page is to display all users with their display ...
0
votes
2answers
412 views
Rails 3 - better to create more thumbnails or only one and resize it by CSS?
I am building little shop application and now thinking about the faster way, how to upload images - I need images in 4 sizes. The first idea - from upload create 4 thumbnails and that's all - probably ...
1
vote
0answers
159 views
Paperclip S3 PDF Thumbnails do not load in IE7/8
This issue is an odd one. Our site allows users to upload PDFs using RoR & Paperclip and uploads the thumbnail as an attached file of the PDF to Amazon s3.
It works great, in every browser except ...
1
vote
1answer
116 views
How do I change convert_option based on user input for Paperclip
I am currently using rails 3.1 and paperclip. I basically want a way so that I can blur a image only when the user ask to blur the image. I believe that -blur will do that with convert_options. ...
0
votes
2answers
597 views
Paperclip images not Displaying in rails app
I'm using paperclip to upload images to the site but when I do, it shows the image placeholder with a question mark, not the image itself. What Am I doing wrong?
In the model:
attr_accessor ...
0
votes
1answer
112 views
How To Move a Paperclip Attachment Keeping Path Settings In Mind?
I have two models. One being Image which has an attachment called "file" and saves to "/photos". These would be simple images that would be inside of, say, an album. I also have users that have an ...
0
votes
2answers
823 views
How can I handle user-uploaded photo files for a Rails app (using paperclip) on Heroku?
So I'm making a Rails app which allows Users to create Items, and each Item has an image attachment, which is handled through the Paperclip gem. The Paperclip gem, by default, saves photos to the ...
0
votes
2answers
48 views
Is a good idea during the process of upload an images create a thumbs?
I am wondering about the best way, how to save & display thumbs of uploaded images. I have a photo gallery and when I upload an image, so I save the image in its original size, thumb1, thumb2 and ...
1
vote
1answer
1k views
Uploading Pictures in Rails 3 (follow-up)
This is a follow-up question to Uploading Pictures Ruby on Rails
I have read about Paperclip and watched the railscast on it. It seems to come highly recommended, but the post is quite old and most ...
0
votes
2answers
821 views
Rails Paperclip, Multiple of Different Type (PDF, Image, Doc…)
There are a lot of good resources out there that show how to create a Rails application with multiple image uploads. Additionally, there are a lot of good resources showing how to use paperclip to ...
1
vote
1answer
39 views
Paperclip putting the date and some strange stuff on the end of file names? (This is not the fingerprint.)
I am duplicating a file and sending it somewhere else with the following code:
thing.image = other_thing.image
However when the new file is getting put somewhere it has the following strange date ...
-1
votes
2answers
133 views
Block direct download of image in rails
Now doing Image gallery in rails. I want to block the direct access of downloading image from web page.How do this thing?. I am using paperclip gem to upload image. Please Help me to resolve this ...
0
votes
1answer
167 views
Using Ruby to detect if an uploaded image is “light”
Does anyone know if it is possible to detect the "lightness" of an uploaded image using Ruby? I need to add border to those images that are too light, so they don't bleed into a light background.
0
votes
2answers
584 views
Rails 3 & paperclip - path for storing images
I try to set up the path for storing images with using Paperclip plugin.
In my model I set the path as:
:path => ":rails_root/public/gallery/:user_id/:style/:basename.:extension",
:url => ...
2
votes
1answer
452 views
Rails paperclip change file
I used rmagick in Rails to convert images I upload from one file type to JPEG. I can make it call from the new image now; I did:
image = Magick::ImageList.new 'public/system/photos/' + ...
0
votes
1answer
71 views
Rails issue with paperclip
I installed the gem paperclip and set it up. I put this piece of code in one of my controllers
@pictures = Picture.near([latitude, longitude], 6.8) #im also using geocoder
@picturethumbs = @pictures
...
0
votes
1answer
101 views
Rails 3 - paperclip with perloader
I use for upload my images Paperclip. I would like to ask you, if exist any gem or plugin for showing the preloader while the image is uploading (something like "56% loaded").
1
vote
2answers
893 views
Rails Image String to Image File
I currently save image strings (this is how they are provided through API) as a binary in my database but I need to (after creation), change this to a file structure, probably using ...
0
votes
1answer
646 views
Paperclip - how to set up the path?
I am already a long time struggling with setting a path for storing an images.
I would like to have a path in a shape:
public/photos/88/small/image.jpg
public/photos/88/medium/image.jpg
...
0
votes
0answers
236 views
Rails 3 & Paperclip - a problem with upload
I am trying to change a way of upload images on my page from my own upload to paperclip. I installed paperclip and tried to do following:
to table photos I added these columns:
| photo_file_name ...
1
vote
1answer
278 views
What is the best way to have image uploading and cropping in a rails app?
I want to upload an image to a model and then crop it. I tried using paperclip with jcrop, but I can not figure it out. Any other options out there?
2
votes
5answers
5k views
Storing image using open URI and paperclip having size less than 10kb
I want to import some icons from my old site. The size of those icons is less than 10kb. So when I am trying to import the icons its returning stringio.txt file.
require "open-uri"
class Category ...
