Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-12 Thread Massimo Foti
From: Bryan Stevenson [EMAIL PROTECTED] I'd also wait on Massimo to be sure it's the same issue... It's sounds like a problem with the an neadless systems. On the CFC's page there are links pointing to potential fixes: http://www.olimpo.ch/tmt/cfc/tmt_img/ looks the same as what I had

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-12 Thread Bryan Stevenson
Once again Bryan, even if it uses the same Java APIs, it's NOT the same code, I published the first version of my CFC back in January 2003, long before you. You can take a look at the source and see by yourself (and you will also see why the image quality is better). hehe...no worries

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-12 Thread Massimo Foti
hehe...no worries Massimonot a credit/plagiarism issue Glad to see things clarified (this was the second time here on CF-Talk). I really don't want to sound rude, but I take this sort of things very seriously. Best Massimo Foti Tools for ColdFusion and

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-12 Thread Bryan Stevenson
hehe...no worries Massimonot a credit/plagiarism issue Glad to see things clarified (this was the second time here on CF-Talk). I really don't want to sound rude, but I take this sort of things very seriously. Best Yep...sorry about thatI'm so busy right now and was trying to

Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Andy Matthews
Massimo... I have a quick question regarding the above CFC. I've set it up and running on my local dev machine (Win XP, CFMX6.1). It works flawlessly. However, when I upload the code to my server and run it, I get the following error: This graphics environment can be used only in the software

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Bryan Stevenson
Andy...is the live server a headless system (no monitor or graphicsjust a box)? If so there are some arguments in the jvm.config (I think it was that file) file that you need to change. If you can confirm this is your situation I may be able to dig up the changes required. The file

RE: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Andy Matthews
-Talk Subject: Image manipulation in coldfusion - error with tmt_img.cfc Massimo... I have a quick question regarding the above CFC. I've set it up and running on my local dev machine (Win XP, CFMX6.1). It works flawlessly. However, when I upload the code to my server and run it, I get

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Bryan Stevenson
Well it looks like ya tracked it down before my reply made it through ;-) Here's what my jvm.config java args look like on the headless machine: java.args=-server -DJINTEGRA_NATIVE_MODE -DJINTEGRA_PREFETCH_ENUMS -Xbootclasspath/a:{application.home}/lib/webchartsJava2D.jar -Xmx512m

RE: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Andy Matthews
. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 3:44 PM To: CF-Talk Subject: RE: Image manipulation in coldfusion - error

Re: image manipulation in coldfusion?

2005-10-10 Thread Massimo Foti
What I'm looking for is a way to test the size of an image before its displayed and then resize it if its width exceeds 250px - if 250px or less then it can be left alone. Not sure if tags like Massimo's support that or not. My CFC offers all the basic functionality you need for this, but

Re: image manipulation in coldfusion?

2005-10-10 Thread Massimo Foti
That's what I tried to do when I wrote version 2.0 of my CFC and I achieved a huge increase in quality. Massimo: Just to let you know... I was playing around with your CFC, and noticed that on some images (usually horizontally oriented ones), bufferedCrop() would throw an outside of raster

Re: image manipulation in coldfusion?

2005-10-10 Thread Massimo Foti
Put it out there Pete. I'd be interesting in seeing what else you added to it, There's a few things that I wish tmt_img did differently. All in all, it's a great piece of code though. Thank you Massimo. I have a few things I would add/improve for the next version. Please feel free to provide

Re: image manipulation in coldfusion?

2005-10-10 Thread Webmaster at FastTrack On Line
I'm catching up on this thread, but ... I do think CF should have image manipulation. I'm not about to go and learn Java or anything vaguely codey if i can possibly help it, not enough hours in the day and I bought CF for the very reason I would never have to learn Java! Programming at that

RE: image manipulation in coldfusion?

2005-10-07 Thread Martin Parry
: Parker, Kevin [mailto:[EMAIL PROTECTED] Sent: 07 October 2005 05:48 To: CF-Talk Subject: RE: image manipulation in coldfusion? Thanks guys - I've been following this with interest as I have a particular resizing challenge at the moment. What I'm looking for is a way to test the size of an image

Re: image manipulation in coldfusion?

2005-10-07 Thread Pete Ruckelshaus
It didn't, but I wrote an app on top of tmt_img that does it. If you're interested in my code, shoot me an email. I also extended tmt_img a bit. Pete ~| Logware (www.logware.us): a new and convenient web-based time tracking

RE: image manipulation in coldfusion?

2005-10-07 Thread Andy Matthews
PROTECTED] Sent: Thursday, October 06, 2005 11:48 PM To: CF-Talk Subject: RE: image manipulation in coldfusion? Thanks guys - I've been following this with interest as I have a particular resizing challenge at the moment. What I'm looking for is a way to test the size of an image before its displayed

RE: image manipulation in coldfusion?

2005-10-07 Thread Andy Matthews
] 615.370.1530 x737 --//- -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: Friday, October 07, 2005 6:03 AM To: CF-Talk Subject: Re: image manipulation in coldfusion? It didn't, but I wrote an app on top of tmt_img that does it. If you're interested

Re: image manipulation in coldfusion?

2005-10-07 Thread Bryan Stevenson
Well ya weren't following that close KevinI posted CFC methods to check image dimensions AND another to re-sizea couplde of CFIFs and those will get ya what ya want ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone:

Re: image manipulation in coldfusion?

2005-10-07 Thread Bryan Stevenson
ImageCR3 does that impeccably. When specifying dimensions for the resize you put 250x100 and it will resize the width down to 250 if greater and/or the height down to 100 is greater than 100 with prefect quality results. as does minelook at the scaleBy attributeensures that dimension

Re: image manipulation in coldfusion?

2005-10-07 Thread Pete Ruckelshaus
OK, most of the meat and potatoes of what I'm doing is in this cfscript block. I'm sure that it's possible to encapsulate this in a much neater fashion, I just chose not to. cfscript /* Set some variables that will make it easier to work with file and server paths */ filepath =

Re: image manipulation in coldfusion?

2005-10-06 Thread Roger B.
That's what I tried to do when I wrote version 2.0 of my CFC and I achieved a huge increase in quality. Massimo: Just to let you know... I was playing around with your CFC, and noticed that on some images (usually horizontally oriented ones), bufferedCrop() would throw an outside of raster

RE: image manipulation in coldfusion?

2005-10-06 Thread Parker, Kevin
: Friday, 7 October 2005 1:53 PM To: CF-Talk Subject: Re: image manipulation in coldfusion? That's what I tried to do when I wrote version 2.0 of my CFC and I achieved a huge increase in quality. Massimo: Just to let you know... I was playing around with your CFC, and noticed that on some images

RE: image manipulation in coldfusion?

2005-10-05 Thread Matthew Small
Journals 704-973-1045 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 04, 2005 6:03 PM To: CF-Talk Subject: Re: image manipulation in coldfusion? ImageCR3: http://efflare.com/products/cfx_imagecr/ Personal licenses

RE: image manipulation in coldfusion?

2005-10-05 Thread kola.oyedeji
+3 I have used imageCR3 and the quality is awesome, that said as others have pointed out it does require a dll/cfx to be installed Kola -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: 04 October 2005 22:21 To: CF-Talk Subject: Re: image manipulation

RE: image manipulation in coldfusion?

2005-10-05 Thread Tim Laureska
Anyone have imageCR3 setup on a shared hosting environment? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 9:00 AM To: CF-Talk Subject: RE: image manipulation in coldfusion? +3 I have used imageCR3 and the quality is awesome

RE: image manipulation in coldfusion?

2005-10-05 Thread kola.oyedeji
. Kola HTH -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: 05 October 2005 13:23 To: CF-Talk Subject: RE: image manipulation in coldfusion? Anyone have imageCR3 setup on a shared hosting environment? -Original Message- From: [EMAIL PROTECTED

RE: image manipulation in coldfusion?

2005-10-05 Thread Andy Matthews
: Tuesday, October 04, 2005 7:01 PM To: CF-Talk Subject: Re: image manipulation in coldfusion? We use imageCR3 and love it. I only wish it was java based so we could use it on linux. -e Once againmy code is Java based and FREE (not as sophisticated as imageCR3but original poster

RE: image manipulation in coldfusion?

2005-10-05 Thread Burns, John D
? John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 04, 2005 6:03 PM To: CF-Talk Subject: Re: image manipulation in coldfusion? ImageCR3: http

Re: image manipulation in coldfusion?

2005-10-05 Thread cftalk
manipulation in coldfusion? ImageCR3: http://efflare.com/products/cfx_imagecr/ Personal licenses for $75: http://efflare.com/purchase/?personal We never gave it away for free, but we have plenty of happy customers. It is optimized native code, like important parts of Java. High quality output

Re: image manipulation in coldfusion?

2005-10-05 Thread Bryan Stevenson
.and for those that care (Tony got his offlist)here's the FREE code I was on about yesterday.enjoy!! !---(Function: ThumbIt)-- Date Created: December 1, 2003 Author: Bryan Arguments: FileLoc - full path of

RE: image manipulation in coldfusion?

2005-10-05 Thread Burns, John D
, Inc. | Web Developer -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 11:36 AM To: CF-Talk Subject: Re: image manipulation in coldfusion? ..and for those that care (Tony got his offlist)here's the FREE code I was on about

Re: image manipulation in coldfusion?

2005-10-05 Thread Bryan Stevenson
Hey John, I haven't noticed any quality issuesalso haven't used it with super high res images Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

Re: image manipulation in coldfusion?

2005-10-05 Thread Massimo Foti
How is the quality on the resizes for that? I've used some java stuff like that before and had issues with the quality. You can use Java for image manipulation and achieve good quality results. You just have to dig the APIs a little more. That's what I tried to do when I wrote version 2.0 of my

RE: image manipulation in coldfusion?

2005-10-05 Thread Burns, John D
, Inc. | Web Developer -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 11:36 AM To: CF-Talk Subject: Re: image manipulation in coldfusion? ..and for those that care (Tony got his offlist)here's the FREE code I was on about

RE: image manipulation in coldfusion?

2005-10-05 Thread Emmet McGovern
Sorry Bryan ;) I've checked out your code. It's great. We just use ImageCR for the broad filetype support. -e -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 04, 2005 8:01 PM To: CF-Talk Subject: Re: image manipulation in coldfusion? We

Re: image manipulation in coldfusion?

2005-10-05 Thread Bryan Stevenson
I've checked out your code. It's great. We just use ImageCR for the broad filetype support. yep...mine is great for good old JPG/GIF manipbut when ya hit the TIFFs it gets fuzzyBTW I do have some code to convert multi-page TIFFs to PDF (one page per page in TIFF)compliments of

image manipulation in coldfusion?

2005-10-04 Thread Andy Matthews
So I'm wondering what some of you use to manipulate images in CF. I've been wanting something like this for a while but it's always gotten put off. At the very least I need to be able to resize images and get their height and width. More than that would be nice, but not necessary. Can anyone

Re: image manipulation in coldfusion?

2005-10-04 Thread Charlie Griefer
not free, but i'd highly recommend the alagad image component. http://www.alagad.com/ On 10/4/05, Andy Matthews [EMAIL PROTECTED] wrote: So I'm wondering what some of you use to manipulate images in CF. I've been wanting something like this for a while but it's always gotten put off. At the

Re: image manipulation in coldfusion?

2005-10-04 Thread Bryan Stevenson
search the archives for my name or e-mail and ThumbIt or mabye image manipulation. I've posted my CFC methods that use Java to resize images and get image pixel height/width about 5-10 times nowdoes not work with TIFFs I don't have the code handy right now or I'd post it yet again ;-)

Re: image manipulation in coldfusion?

2005-10-04 Thread Rick Root
Andy Matthews wrote: So I'm wondering what some of you use to manipulate images in CF. I've been wanting something like this for a while but it's always gotten put off. At the very least I need to be able to resize images and get their height and width. More than that would be nice, but not

Re: image manipulation in coldfusion?

2005-10-04 Thread Joe Rinehart
I'd check out the Alagad Image Component at www.alagad.com - it's native CF. While it's not free, it's so cheap that you'll make back the dough the first time you use it in terms of time saved. -Joe On 10/4/05, Andy Matthews [EMAIL PROTECTED] wrote: So I'm wondering what some of you use to

Re: image manipulation in coldfusion?

2005-10-04 Thread Raymond Camden
I'll ditto Alagad. It's only like 75 bucks and well worth the price. Yes, there are free alternatives, but this one is so easy and simple to use, I'd still recommend it. On 10/4/05, Joe Rinehart [EMAIL PROTECTED] wrote: I'd check out the Alagad Image Component at www.alagad.com - it's native

Re: image manipulation in coldfusion?

2005-10-04 Thread cftalk
ImageCR3: http://efflare.com/products/cfx_imagecr/ Personal licenses for $75: http://efflare.com/purchase/?personal We never gave it away for free, but we have plenty of happy customers. It is optimized native code, like important parts of Java. High quality output and extensive image format

Re: image manipulation in coldfusion?

2005-10-04 Thread Charlie Griefer
now i'm torn. I've used ImageCR3 in the past and yes, it's a great product with absolutely fantastic (FANTASTIC) support. But what I like about Alagad is the fact that it's a straight CFC. No custom tags to install (which may not be a big issue unless you're in a shared environment and the host

Re: image manipulation in coldfusion?

2005-10-04 Thread Bryan Stevenson
now i'm torn. I've used ImageCR3 in the past and yes, it's a great product with absolutely fantastic (FANTASTIC) support. But what I like about Alagad is the fact that it's a straight CFC. No custom tags to install (which may not be a big issue unless you're in a shared environment and

Re: image manipulation in coldfusion?

2005-10-04 Thread Alan Rother
Wow... yeah... Alagad is nice, but the stuff from eFFlare is awesome. If you are in a shared envirnment I would go with alagad. On 10/4/05, Bryan Stevenson [EMAIL PROTECTED] wrote: now i'm torn. I've used ImageCR3 in the past and yes, it's a great product with absolutely fantastic

RE: image manipulation in coldfusion?

2005-10-04 Thread Emmet McGovern
We use imageCR3 and love it. I only wish it was java based so we could use it on linux. -e -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 04, 2005 6:13 PM To: CF-Talk Subject: Re: image manipulation in coldfusion? now i'm torn. I've used

Re: image manipulation in coldfusion?

2005-10-04 Thread Bryan Stevenson
We use imageCR3 and love it. I only wish it was java based so we could use it on linux. -e Once againmy code is Java based and FREE (not as sophisticated as imageCR3but original poster doesn't need the fancy stuff) OK...I'm done talking to myself ;-) Bryan Stevenson B.Comm. VP

Re: image manipulation in coldfusion?

2005-10-04 Thread Pete Ruckelshaus
I use Massimo's tmt_img 2.0 (http://www.olimpo.ch/tmt/cfc/tmt_img/) and it's great if what you need to do is crp/resize images. It's all CFC so no custom tags, nothing to configure. Oh, and it's free. I extended it to add a max size that resizes so that no dimension is greater than the passed