Dragonfly is a Ruby gem for a framework that enables on-the-fly processing for any content type. It is especially suited to image handling. Its uses range from image thumbnails to standard attachments to on-demand text generation. Use this tag for the Ruby gem, not the deprecated [dragonfly] tag, ...
0
votes
0answers
25 views
Devise restrict access to a specific url/rack-app
I'm trying to restrict the access to the "/media/:url" path. I need to do this because of dragonfly (rack app). At the moment the path is accessible for everyone.
I've tried it with a constraint in ...
0
votes
0answers
29 views
Dragonfly not working in production
I am using Dragonfly with Nginx, unicorn and mini_magick. I am using mem_cache_store in production.
Image upload and display works fine in development environment. But on production it fails with ...
0
votes
1answer
50 views
rake aborted - is a directory/undefined method `downcase' for nil:NilClass
I've a rake task for importing pdf's from my filesystem into GridFS via dragonfly-gem. The task fails with no obvious reason.
I appreciate any help. Thanks!
The rake task:
task :worksafety_files ...
0
votes
0answers
26 views
How to upload a file using RoR with a plugin without database
I would like to use a RoR plugin to upload a file (mostly for validation of the content type). However, I don't want to save the file name to the database (I don't want any extra columns on the ...
0
votes
0answers
47 views
dragonfly, passenger, nginx - no preview images
We are trying to use dragonfly to upload and process images in a rails 3.2 app.
The uploading (and storing on Amazon S3) seems to go fine. The problem is that any 'processed' images are not ...
0
votes
1answer
35 views
How to work with Dragonfly's before_serve block to watermark pdf files
I'm trying to serve PDF files that are watermarked with a users email address and timestamp at the time of downloading a file using the dragonfly gem and I'm having a bit of trouble working with the ...
0
votes
1answer
10 views
Dragonfly across applications; Same image_uid, same host, different Basename
I am trying to port existing users from an old 3.1 rails application to a new rails 4.0 application. I assumed that having the same configuration and same image_uid's would be sufficient to port ...
0
votes
1answer
142 views
Image url in JSON (RABL, Dragonfly, Ruby on Rails)
I'm using RABL gem, my user model has many posts
users/show.rabl
object @user
attributes :id, :name
child :posts do
extends "posts/post"
end
posts/_post.rabl
attributes :id, ...
1
vote
0answers
55 views
Duplicate record with Dragonfly gem image in Rails
How do I duplicate an ActiveRecord object with a dragonfly image?
I have the following.
model:
class Event < ActiveRecord::Base
image_accessor :thumbnail
attr_accessible :thumbnail, ...
0
votes
1answer
103 views
Dragonfly - Uploaded images not displayed
I am using dragonfly with jruby and apache tomcat to upload images. I am trying to display images that i am uplaoding dynamically using profile_picture.thumb('30x30#').url
When I run the app using ...
5
votes
1answer
1k views
Heading into 2013, should I go with Dragonfly or Paperclip or Carrierwave? [closed]
I am just another average joe hoping to jump onto the social network bandwagon. I'd like to know which photo uploading/resizing gem I should use for users of my app. It would be great if you could ...
2
votes
1answer
140 views
Rails public/system for user files
Both Rails gems DragonFly and Paperclip use public/system folder to store uploaded files.
As far as I know this folder is accessible by everybody - at least the root files, 404.html or others.
How ...
0
votes
0answers
119 views
Dynamically set the s3 storage bucket for Refinery CMS
We are attempting to setup refinery cms using multiple tenants (multiple sites). One of the main issues we are having is separating out the different websites images depending on which site the user ...
0
votes
1answer
152 views
DragonFly attachment and BackBone.js
I'm trying to attach an image to a model using BackBone.js, in Rails all works as expected.
But with BackBone.js I don't get how to attach an image and for example show it in the show template.
as ...
0
votes
0answers
138 views
wrong URLs deploying to a subdirectory
in my view I have:
<a href="<%= @project.file.url %>"><%= @project.file.name %></a>
locally, in development, all works fine and I can download the file. But on my VPS in ...
0
votes
1answer
216 views
speed up uploads from Dragonfly to S3
(Rails 3.2 on Heroku)
For handling image uploads in Rails I switched from Paperclip to Dragonfly because I like to be able to generate thumbnails dynamically, when they are requested for the first ...
1
vote
1answer
256 views
Strange Timestamp issues using aws s3 with rails
I am using Dragonfly (https://github.com/markevans/dragonfly) for some image manipulation on a project and that uses fog as a data storage engine. I recently started getting weird Amazon errors on ...
0
votes
0answers
106 views
rails dragonfly storage path with polymorphic relationship
I am using Dragonfly to handle the upload of attachments. I have a polymorphic Attachment model that is used by several other models.
class Attachment < ActiveRecord::Base
file_accessor ...
0
votes
0answers
234 views
Mongoid 3 and Dragonfly image upload
I'm trying to get a simple image upload to work on Rails 3.2.7, Mongoid 3, and GridFS. It seems like this is possible, because I've seen a few comments online about people getting it to work. I've ...
0
votes
2answers
143 views
Dragonfly cache location
Does anyone know the location of the rails image gem dragonfly's cache. I don't want to have to regenerate all the different sized versions of images each time I deploy.
I already keep the original ...
0
votes
1answer
239 views
File uploading with Dragonfly, impossible to access images after upload (Rails 3)
I'm trying to make a multiple drag and drop upload file system with Rails 3 and Dragonfly (or anything that would work actually)
I'm at the point where my file comes in my controller through the ...
0
votes
0answers
80 views
Copy dragonfly cache
Is there a way to copy the cached image thumbnails etc between deployments?
I'm already using a deploy hook to share the original images between deployments, but resizes need to be regenerated, which ...
1
vote
1answer
254 views
How to?: Mongoid 3 and Dragonfly configuration
I am trying to upgrade my app to mongoid version 3. In my dragonfly initializer I used to have this:
app.configure_with(:imagemagick)
app.configure_with(:rails) do |c|
c.datastore = ...
0
votes
0answers
76 views
Is there anyway to use Dragonfly without Active Record in Rails 3?
Is there anyway to use Dragonfly without an ORM such as Active Record in Rails 3?
I'm developing a Theme Editor that creates and destroy folders, upload images, etc. Specially about the image ...
1
vote
0answers
105 views
Dragonfly how resize small image and fill gaps with some color?
Is it possible to resize with Dragonfly gem small image 70x70 to 160x70 and fill gaps with specific color
I try some recipes from here http://markevans.github.com/dragonfly/file.ImageMagick.html
...
0
votes
1answer
157 views
Dragonfly adding images to store before Model.save
The Dragonfly doc implies that nothing is written to the datastore until the model is saved:
When the model is saved, a before_save callback persists the data to
the App's configured datastore
...
1
vote
1answer
870 views
Rails 3 and RefineryCMS - Dragonfly::Shell::CommandFailed in Refinery::Admin::ImagesController#create
Looks like multiple people have this same/similar issues and there are a couple of reported fixes for it that I've found on SO here . Unfortunately, they are not working for me. I'm running MacOS ...
0
votes
1answer
234 views
Rails 3 Dragonfly uid of attachment is correct but the file iself is nil
Im using Dragonfly and Amazon s3 for the image uploads. For some reason when I upload a picture, it saves to the right folder on amazon, and the uid is the right path, but it is not showing up!
Every ...
1
vote
1answer
393 views
Process imagemagick functions not working with Dragonfly::Processor
In my user model I want to resize the image on upload. I am storing the images on amazon s3. Everything worked great and the image displays, uploads, deletes, etc. until I tried to add the ...
2
votes
1answer
407 views
Application timeout when saving a large file in rails using dragonfly
I am having trouble saving a large file, using a model with the dragonfly extension 'image_accessor'.
We are trying to save the file to an Amazon S3 server, using fog and excon. On this save, we ...
0
votes
1answer
169 views
Upload image using UIImagePickerController to dragonfly on rails
I have a app for iOS and I have the user pick a image with a UIImagePickerController. How can I upload that image to my rails app using dragonfly. I think I would use multipart-image-data but I ...
1
vote
1answer
154 views
Possible to configure Dragonfly-Gem w/Rails3 to force convert all uploads to image/jpeg?
I've been reading through the DragonFly docs and I think the before_serve clause of DragonFly's configuration is probably where I need to focus, perhaps by setting up some sort of
convert to jpeg if ...
7
votes
4answers
1k views
refinerycms image not loading - dragonfly error
I'm working on developing a refinerycms rails app that was working good locally and now i've moved it to my VPS and I was having issues with images that i uploaded through refinerycms not loading and ...
0
votes
0answers
149 views
Dragonfly images not loading on production server when copied from local database
I'm using Dragonfly for attaching and rendering images in my rails app, and it works great if I create and view a new image on the production site. However if I copy across the data that I've created ...
2
votes
1answer
157 views
Dragonfly mass-assign error
I've added an "avatar" to my user model (Devise) and am getting the error Can't mass-assign protected attributes: avatar
In my user model I have added:
attr_accessible :avatar_uid, :avatar_name
...
0
votes
1answer
124 views
Using dragonfly with globalize
I'm trying to i18n the image_uid attribute in my model so I can have different images with different languages. I'm using globalize3 and dragonfly.
The problem is that is not working at all. It ...
0
votes
1answer
178 views
Change permissions for files in S3 using Dragonfly
in my rails project i use dragonfly for uploading files and store them in S3.
initially i pass {'x-amz-acl' => 'private'} for uploaded files and use private urls with expiration date.
is there an ...
2
votes
1answer
421 views
How to resize image before_save with dragonfly?
In my model i have:
attr_accessible :photo
image_accessor :photo
before_save :resize_image
def resize_image
self.photo = self.photo.process(:resize, '40x40')
end
but after save it removes my ...
1
vote
2answers
320 views
Converting PDFs to PNGs with Dragonfly
I have a Dragonfly processor which should take a given PDF and return a PNG of the first page of the document.
When I run this processor via the console, I get back the PNG as expected, however, when ...
1
vote
1answer
703 views
Change local storage location in refinerycms for uploaded files
I'm using refinerycms 1.0.9 and I'd like to change the default location where dragonfly saves the files.
Here is my dragonfly.rb in config/initializers:
require 'dragonfly'
app = ...
0
votes
1answer
155 views
Can I use JSON values to set a profile image using Dragonfly in a Rails app?
I have an app that has both a web UI and mobile client on iPhone (Android coming soon). The user account page accepts a profile image, which just works with the Dragonfly gem. I'd like to let the ...
1
vote
1answer
396 views
Dragonfly: How to set max image size?
How to set max image size and weight/height using Dragonfly? Max size will be different for different models, so i would like to set it in model lvl.
1
vote
3answers
242 views
ruby - Dragonfly - Force CMYK to RGB conversion when doing thumbnails
I'm using a nice enough cms (locomotive(github)) to allow some non-tech savy users to upload pictures to the system. The program is able to resize and crop pictures to any given size.
Trouble is, ...
1
vote
0answers
998 views
Why? Carrierwave vs. Paperclip vs. Dragonfly? [closed]
The last time someone's compared the three image uploaders was in 2010. I'm just wondering. What are your two cents on Carrierwave, Paperclip and Dragonfly?
It seems like Dragonfly is the new kid on ...
1
vote
1answer
349 views
Dragonfly, rails 3.2, Refinery Edge (2.0) ImageMagick on Centos 5.6
I have all the dependancies installed (or I think I do). I definitely have ImageMagick installed, however when using Refinery(v2.9 on rails 3.2) to upload images, I get the following error:
...
8
votes
1answer
2k views
Rails 3 + JQuery-File-Upload + Nested Model
I've been searching for some examples, but have come up short:
I'm trying to implement JQuery-File-Upload on a project I'm working on, but am getting lost as to how to get it to work with nested ...
2
votes
3answers
729 views
Rails: How to protect images uploaded to S3 using dragonfly
I'm looking for a way to protect images uploaded from a Heroku Rails 3 app using the dragonfly gem to a S3 storage. I'd like to control access on a user basis and ensure that the images can't be ...
1
vote
1answer
1k views
Assigning Image from URL with Dragonfly
I'm using Dragonfly for handling images on a Rails 3.1 app. I'm struggling with assigning images to a model via the url.
I have this working fine in a form:
<%= form_for [@word, @game, @picture], ...
0
votes
1answer
1k views
Multi file upload with rails_admin (Carrierwave, Paperclip, Dragonfly)
I'm looking for a quick solution for multi file upload with rails_admin.
Any ideas or solutions out there?
0
votes
2answers
215 views
In Rails model check if URL on same Rails server exists
In a Rails model how can I check if a URL on the same Rails server exists?
I'm using dragonfly and am trying to check the existence of an image from a path such as ...
