Resizing images on upload

2009-09-29 Thread Keith McGee
Is there a way to resize a users image when they upload it? I want to have the image formated smaller so it doesn't take up unessasary space on the server and use up unessasary bandwith viewing the image. Coldfusion program would be nice but will try anything. Keith

RE: Resizing images on upload

2009-09-29 Thread Will Swain
: Resizing images on upload Is there a way to resize a users image when they upload it? I want to have the image formated smaller so it doesn't take up unessasary space on the server and use up unessasary bandwith viewing the image. Coldfusion program would be nice but will try anything. Keith

RE: Resizing images on upload

2009-09-29 Thread Rick Faircloth
# / -Original Message- From: Keith McGee [mailto:kpmc...@frontiernet.net] Sent: Tuesday, September 29, 2009 6:56 AM To: cf-talk Subject: Resizing images on upload Is there a way to resize a users image when they upload it? I want to have the image formated smaller so it doesn't

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-26 Thread Rick Root
On 12/17/07, Casey Dougall [EMAIL PROTECTED] wrote: ImageCFC uses the java guts to make it work and that's just not going to happen from what I've seen on their hosting. no createobject tag which is how imageCFC does its thing. If I were on their windows coldfusion hosting I could use

Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Casey Dougall
Hello, Without having this turn into a heated debate about hosting companies, the pros and cons of dedicated boxes etc... I would like to know if anyone is resizing images on GoDaddys Linux Coldfusion Shared hosting accounts. I have a client who was already hosting with them and adding

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Ryan Stille
this turn into a heated debate about hosting companies, the pros and cons of dedicated boxes etc... I would like to know if anyone is resizing images on GoDaddys Linux Coldfusion Shared hosting accounts. I have a client who was already hosting with them and adding coldfusion to their account

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Casey Dougall
On 12/17/07, Ryan Stille [EMAIL PROTECTED] wrote: In CF8, all the image functions work the same regardless of the host operating system. This is CF7 hosting, they do not offer 8 at this time. ~| Adobe® ColdFusion® 8

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Azadi Saryev
try imageCFC from opensourcecf.org/riaforge i am not 100% sure it runs on linux with no problems, but it uses only CF's underlying Java, nothing else, no dll's or anything... so it probably 'should' work on linux mind you, though, the resize quality is quiet a bit removed from superb - CF8's

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Jake Churchill
: Resizing images Godaddy Linux Coldfusion hosting? try imageCFC from opensourcecf.org/riaforge i am not 100% sure it runs on linux with no problems, but it uses only CF's underlying Java, nothing else, no dll's or anything... so it probably 'should' work on linux mind you, though, the resize

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Casey Dougall
On 12/17/07, Jake Churchill [EMAIL PROTECTED] wrote: It's my understanding that they both use Java's JAI (Java Advanced Imaging) packages so I'm not sure how the quality can be that different from one to the other. I use ImageCFC and have NEVER seen any issues as long as you start with a

RE: Resizing images under Linux

2002-11-06 Thread Benoit Hediard
-rat.com] Envoyé : mardi 5 novembre 2002 23:23 À : CF-Talk Objet : RE: Resizing images under Linux My research with the ImageJ library: http://www.web-rat.com/mt2/mt-search.cgi?IncludeBlogs=2search=image+j Ben Hediard pointed imageJ out to me ages ago - http://rsb.info.nih.gov/ij/index.html ~Todd

Re: Resizing images under Linux

2002-11-06 Thread Paul Hastings
Indeed, ImageJ is another imaging Java library, it is easier to use than JAI. It supports GIF and it is the world's fastest pure Java image processing program. It can filter a 2048x2048 image in 0.5 seconds. That's over 8 million pixels per second!. i can attest to this, JAI might be more

Re: Resizing images under Linux

2002-11-06 Thread Rick Root
Thanks for all your suggestions everyone. I think CF_ImageMagick is the way I'm going to go, as it seems to do everything I want, I already have ImageMagick installed on my server, and I don't have to write any fancy code other than that handles the automatic creation and caching of

Problems with dynamically generated images... (was Re: Resizing images under Linux)

2002-11-06 Thread Rick Root
Okay... so I'm using CF_MagickTag to generate my thumbnails, and it's doing an admirable job of it. HOWEVER, the image doesn't appear properly the first time a thumbnail is generated... it's almost as if the page is loading BEFORE the thumbnail is completely generated. For an example, go

Re: Problems with dynamically generated images... (was Re: Resizing images under Linux)

2002-11-06 Thread Bob Haroche
Cute kid! I didn't see what you're describing, but I have seen it before on a variety of sites when using IE 6. For some reason, the browser sometimes doesn't want to show images the first time. Are you finding this problem in other browsers too? --- Regards, Bob Haroche O n P o i n

Re: Problems with dynamically generated images... (was Re: Resizing images under Linux)

2002-11-06 Thread Rick Root
Bob Haroche wrote: I didn't see what you're describing, but I have seen it before on a variety of sites when using IE 6. For some reason, the browser sometimes doesn't want to show images the first time. Are you finding this problem in other browsers too? Goodness... you know I hadn't

Re: Problems with dynamically generated images... (was Re: Resizing images under Linux)

2002-11-06 Thread Rick Root
Bob Haroche wrote: Cute kid! I didn't see what you're describing, but I have seen it before on a variety of sites when using IE 6. For some reason, the browser sometimes doesn't want to show images the first time. Are you finding this problem in other browsers too? Crud, I take it

Resizing images under Linux

2002-11-05 Thread Rick Root
I am running CF5.0 under Linux, and I need to be able to resize images on the fly... Ie, resize the image and cache the thumbnail image so it doesn't have to do it again UNLESS the base image has changed. There is a tag out there that can do this under Windows, but there are two problems: #1 -

RE: Resizing images under Linux

2002-11-05 Thread Ryan Farrell
- From: Rick Root [mailto:rroot;wakeinternet.com] Sent: Tuesday, November 05, 2002 12:30 PM To: CF-Talk Subject: Resizing images under Linux I am running CF5.0 under Linux, and I need to be able to resize images on the fly... Ie, resize the image and cache the thumbnail image so it doesn't have to do

Re: Resizing images under Linux

2002-11-05 Thread Rick Root
Nope, requires windows... and as I said I'm using Linux. I'm researching the GD library which would allow me to write a perl script and call that via CFEXECUTE... but I'd much rather find an existing solution :) - Rick Ryan Farrell wrote: We are working with something called AutoImager. Our

Re: Resizing images under Linux

2002-11-05 Thread Sean A Corfield
Check out JAI - the Java image library. Matt Liotta wrote an article on this for the DesDev Center recently... *searches* http://www.macromedia.com/desdev/mx/coldfusion/articles/jai_images.html That Java code should be callable from CF5. On Tuesday, Nov 5, 2002, at 11:30 US/Pacific, Rick Root

RE: Resizing images under Linux

2002-11-05 Thread Robert Everland
] Sent: Tuesday, November 05, 2002 2:30 PM To: CF-Talk Subject: Re: Resizing images under Linux Nope, requires windows... and as I said I'm using Linux. I'm researching the GD library which would allow me to write a perl script and call that via CFEXECUTE... but I'd much rather find an existing

RE: Resizing images under Linux

2002-11-05 Thread Douglas.Knudsen
IIRC, you can do some GD stuff with PHP... -Original Message- From: Rick Root [mailto:rroot;wakeinternet.com] Sent: Tuesday, November 05, 2002 2:30 PM To: CF-Talk Subject: Re: Resizing images under Linux Nope, requires windows... and as I said I'm using Linux. I'm researching the GD

RE: Resizing images under Linux

2002-11-05 Thread Josh Trefethen
Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. -Original Message- From: Rick Root [mailto:rroot;wakeinternet.com] Sent: Tuesday, November 05, 2002 10:30 AM To: CF-Talk Subject: Resizing images under Linux I

Re: Resizing images under Linux

2002-11-05 Thread Jesse Houwing
Rick Root wrote: Nope, requires windows... and as I said I'm using Linux. I'm researching the GD library which would allow me to write a perl script and call that via CFEXECUTE... but I'd much rather find an existing solution :) There is a CF_ImageMagick tag somewhere... Ahh there it is:

RE: Resizing images under Linux

2002-11-05 Thread Kevin Graeme
format). I would love it if PNG were an acceptable substitute, but it's implementation in browsers seems worse than CSS. -Kevin -Original Message- From: Sean A Corfield [mailto:sean;corfield.org] Sent: Tuesday, November 05, 2002 1:47 PM To: CF-Talk Subject: Re: Resizing images under Linux

RE: Resizing images under Linux

2002-11-05 Thread todd
substitute, but it's implementation in browsers seems worse than CSS. -Kevin -Original Message- From: Sean A Corfield [mailto:sean;corfield.org] Sent: Tuesday, November 05, 2002 1:47 PM To: CF-Talk Subject: Re: Resizing images under Linux Check out JAI - the Java image

Resizing images

2001-07-31 Thread Hamid Hossain
Hi, I want to be able to resize gif, jpg or bmp pictures with coldfusion. Any help. Regards, Hamid Hossain ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: Resizing images

2001-07-31 Thread Michael Lugassy
Search the archives for thumbnails Thanks, Michael - Original Message - From: Hamid Hossain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 11:16 AM Subject: Resizing images Hi, I want to be able to resize gif, jpg or bmp pictures with coldfusion

Re: Resizing images

2001-07-31 Thread Tim Painter
tag thrown around a bit as well, but I have never used it. Tim P. - Original Message - From: Hamid Hossain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 5:16 AM Subject: Resizing images Hi, I want to be able to resize gif, jpg or bmp pictures with coldfusion

RE: Resizing images

2001-07-31 Thread Shawn Grover
this? Shawn Grover -Original Message- From: Tim Painter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 5:15 AM To: CF-Talk Subject: Re: Resizing images Hamid, I used Image Robot from Jasc (www.jasc.com) . It has a command line feature that I use in conjunction with cfexecute

Re: Resizing images

2001-07-31 Thread Keith Meade
it. (smile) Keith Meade [EMAIL PROTECTED] - Original Message - From: Shawn Grover [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 10:12 AM Subject: RE: Resizing images I'm looking for something similar, but I don't want to resize the actual image file. I'm

Re: Resizing images

2001-07-31 Thread Kay Smoljak
On Tue, 31 Jul 2001 02:16:23 -0700 (PDT), Hamid Hossain [EMAIL PROTECTED] wrote: I want to be able to resize gif, jpg or bmp pictures with coldfusion. cfx_pwimageproc does this, and a lot more (http:www.developer.perthweb.com.au). It outputs jpegs, but not gifs, because of the ridiculous