search for: fleximage

Displaying 13 results from an estimated 13 matches for "fleximage".

2011 Aug 25
0
Rails 3.0 Fleximage Error Errno::EACCES
Hi, I''m using Fleximage on my website so users can upload avatars. I recently upgraded to Rails 3.0 and switched host to slicehost.com. I successfully installed imagemagick and the gems rmagick and fleximage. Everything seems to be working fine except when I try to edit my account and upload an avatar. After selecting an...
2008 Sep 18
2
Setting up Fleximage
Hello! I''ve been trying today to setup fleximage to handle photo uploads to a RoR application by following the tutorial that is provided (http://github.com/Squeegy/fleximage/wikis/gettingstarted) Originally, I just dropped in all of the sample code that they provided, which I copied below this question. - When I tried to access "new"...
2007 Jan 19
0
Fleximage get a resized thumbnail
I am using for the first time the Fleximage plugin... good, I can upload and resize images on the fly before storing them.. User has-one Image I need to get a very small thumbnail to be stored directly into a tinyblob field of the user record... , I know Fleximage is able to produce thumbnails, but regarding performance I''d prefer...
2008 May 15
9
Squeegy Fleximage Routing
Hello people, I''m using squeegy fleximage for my site right now and having some difficulty to achieve some things. Updates photos are saved in created at date generated fom like : '' /images/2008/05/14/22.png '' . However this route is not accessible through the browser and I don''t know how to add it in my routes.r...
2006 Dec 15
6
RMagick=bad, ???=good
I know that Zed has made mention of the fact that using RMagick with mongrel and rails is a bad thing. I''m currently using FlexImage (which in turn uses RMagick) on my application and really haven''t had too many problems. We get a restart for memory usage every 8-10 hours on one mongrel of twelve running, but I''m not sure if that''s an RMagick issue. Either way, I''d like to make my system bette...
2007 Feb 09
7
Upload image without rmagic
I need a way to upload an image and display it without using any of the plugins that use rmagic. I have used the plugins (file_column, fleximage) which both use rmagic and gave me problems (never got fleximage to work) Thanks in advance - K --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email...
2007 Jan 07
0
making textfields unscannable by spammers? use fleximage?
hi, i am building a site and would like to make it so spammers cant copy phone numbers and emails. would using something like this help solve this problem? http://beautifulpixel.com/articles/2006/11/03/fleximage-can-draw-text thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39...
2006 Feb 28
6
File_column, RMagick, and watermarking
I''m working on a photo gallery and I''m using File_column to handle the uploads of the files and create my thumbnails, but does anyone here have any idea how to have a watermark (opaque text maybe) placed over one of the versions? Any ideas on how to go about this would be great. Even if it''s just straight RMagick code, that would be fine too. Thanks in advance for the
2007 Jul 11
7
Best way to upload an image and make a thumbnail
Hi, which is the best way to upload an image, keep that and also make a thumbnail? The images should not be stored in the database, but as normal image files in a specific directory. I think that for the thumbnail i should use rmagick, but for the upload ? (something which work with and without javascript, in every browser) Thanks :) -- Posted via http://www.ruby-forum.com/.
2006 Nov 21
1
file_column and resizing only when it's bigger issue
I have limited space in my web design to display the logo of the upcoming event. So I put in code like this. file_column :image, :magick => { :versions => { "250x165" => "250x165"}} I was under the assumption that the image under directory 250x165 will be of this size if the image is bigger than 150x165. But I found out that for an image of size 134x88 the image
2012 Dec 14
0
[LLVMdev] issue with profiling in LLVM 3.1
...uted (the difference was about 25x!). I am copying out the exact functions below. The relevant parts are in bold font: *------------* *SOURCE : ------------* //accumulate error at a given edge sample point (round to nearest integral point) *inline void SampleEdgePoint(float xf, float yf, const FlexImage8u &EdgeMap, int &error, int &samplePoints) { int x = int(xf + 0.5f), y = int(yf + 0.5f); if((x >= 0) && (x < EdgeMap.Width()) && (y >= 0) && (y < EdgeMap.Height())) //check image bounds { int e = 255 - EdgeMap(x,y);...
2007 Dec 22
2
multiple file upload
Hi, I want to do a multiple file upload with Ruby. I want to let my users upload pictures on my website to their account. I''m looking for something with a nice interface. I was wondering if you knew of any plugins/gems i can use THanks :) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2007 Feb 26
24
Ruby/rails port of Cocoon/hibernate
Hi, I''m currently running an apache/jboss cocoon/flow/hibernate/ajax paypal (directpayment) project and am looking into the possibility of porting it across to ruby/rails. For that reason I would like to know the following: 1. Can I call my java classes or would I be looking at a complete rewrite in ruby? 2. How effective is ruby in terms of seperation of concerns regarding design from