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, ...
1
vote
2answers
317 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 ...
5
votes
1answer
337 views
Uploading image to Rails server (using Dragonfly) from iPhone
I am trying to upload an image from iPhone to Rails, which is configured with Dragonfly gem. The problem is I keep getting this error:
Dragonfly::TempObject must be initialized with a String, a ...
1
vote
1answer
255 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 ...
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
33 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
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
1answer
215 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 ...
0
votes
1answer
232 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
1answer
156 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
...
0
votes
1answer
120 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
177 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 ...
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, ...
1
vote
0answers
103 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
...
1
vote
0answers
168 views
How ContentFlow scales the images?
Have been using ContentFlow as a JS image gallery.
I have only one version of image files sized to 1000x750 landscapes and 600x800 portraits and none exceeds 300kb.
i have set maxItemSize:400;
When ...
1
vote
0answers
627 views
rack ssl and nginx configuration
Hi I am trying to use rack ssl with my nginx. Everything works fine on all pages apart from my statics dragonfly images which is serve as a proxy via nginx. Here is that part of the config (ofc when ...
0
votes
0answers
18 views
Dragonfly restrict access to files
I've a Rails 3.2 app with Dragonfly as attachment upload handler. I'm trying to restrict the access to the "/media/filename" path. Since dragonfly is a rack-app i cannot use devise for this.
I've ...
0
votes
0answers
27 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
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
42 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
0answers
117 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
0answers
137 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
0answers
105 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
233 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
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 ...
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 ...
0
votes
0answers
148 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 ...