Re: cfx_image and pjpeg read error

2007-06-27 Thread Matt Gai
Thanks for the suggestion JJ, but I figured out that by using CFX_IMAGE2 alongside CFX_IMAGE to handle PJPEG file types, it works great. So I just use CFX_IMAGE2 ACTION=READ FILE=C:\Domains\mydomain\images\filename.jpg to read any type of uploaded photo... and then IF the photo width is

Re: cfx_image and pjpeg read error

2007-06-27 Thread Matt Gai
Hey JJ I meant to post that reply instead of just sending it to you - can you send it back to me please? Thanks - Matt ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex 2 Free Trial

Re: cfx_image and pjpeg read error

2007-06-27 Thread J.J. Merrick
I think it went to the list... at least that is what gmail is saying. On 6/26/07, Matt Gai [EMAIL PROTECTED] wrote: Hey JJ I meant to post that reply instead of just sending it to you - can you send it back to me please? Thanks - Matt

Re: cfx_image and pjpeg read error

2007-06-26 Thread J.J. Merrick
Are you in MX+? If so have you tried Image.cfc? http://www.opensourcecf.com/imagecfc/ It uses the java image stuff and is really the precursor to CFIMAGE in CF8. I have found it to be a lot more customizable then using the CFX_IMAGE tag... and java to boot! -J.J. On 6/25/07, Matt Gai [EMAIL

Re: cfx_image

2007-06-22 Thread Mark Lewis
Hi, This has been solved, by adding a stretch command on the end of the resize. Thank You Mark Hi, I have been using cfx_image tag to resize images, however they always resize to scale. I need to now resize an image to a specific size even if it means distorting an image. I can't seem

Re: cfx_image or cfximage

2005-09-14 Thread Bryan Stevenson
Hey Mike, Perhaps knowing what you are planning on doing with these image tags will help us guide you ;-) There are other options to those tagsJava comes to mind...faster and free...all depends on what you're trying to do. For example if you simply want to re-size imagesuse

Re: cfx_image or cfximage

2005-09-14 Thread Mike Soultanian
Well, let's see. Right now, here's what I use the tag for. I have a user upload a picture. Then, I rename the picture to a random filename. Next, I use cfximage to resize that image to 4 different sizes and store the output of each of those sizes to an appropriate name: filenameT,

Re: cfx_image or cfximage

2005-09-14 Thread Ray Champagne
Somehow I missed the post from Bryan the first time, but Bryan, can you post the Java code to resize an image anyway? I'd like to have this for a project I'm starting in a couple of weeks. Keep in mind I'm pretty much a Java newbie Thanks, Ray Mike Soultanian wrote: Well, let's

Re: cfx_image or cfximage

2005-09-14 Thread dave
, September 14, 2005 12:04 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: cfx_image or cfximage Somehow I missed the post from Bryan the first time, but Bryan, can you post the Java code to resize an image anyway? I'd like to have this for a project I'm starting in a couple of weeks. Keep

Re: cfx_image or cfximage

2005-09-14 Thread Ray Champagne
. From: Ray Champagne [EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 12:04 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: cfx_image or cfximage Somehow I missed the post from Bryan the first time, but Bryan, can you post the Java code to resize

Re: cfx_image or cfximage

2005-09-14 Thread Bryan Stevenson
@houseoffusion.com Sent: Wednesday, September 14, 2005 8:57 AM Subject: Re: cfx_image or cfximage Well, let's see. Right now, here's what I use the tag for. I have a user upload a picture. Then, I rename the picture to a random filename. Next, I use cfximage to resize that image to 4 different sizes

Re: cfx_image or cfximage

2005-09-14 Thread Bryan Stevenson
FYIwon't work with TIFFs (but I have code to convert TIFFs into PDFs) ;-) 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: www.electricedgesystems.com

Re: cfx_image or cfximage

2005-09-13 Thread Mike Soultanian
Hmm.. I started doing some research on it and found that Jukka's didn't have very good image quality when resizing images. Do you know the licensing for these products? Is there any at all or are people free to use them in their apps. I also found another one called cfximagecr. That one

Re: cfx_image or cfximage

2005-09-12 Thread Barney Boisvert
They're totally separate. If I recall correctly, Jukka's a very indepth image processing tag that utilizes it's own command language, while the other one is very simple. I might have that backwards, but I'm pretty sure it's right. I preferred Jukka's because the simple stuff wasn't much harder,

RE: CFX_Image oddity

2004-08-31 Thread Dennis Powers
on a side note how can you tell the file size of the image before uploading to the server. With the caveat that this will only work on Windows Clients and the client must agree to an ActiveX install: script language=_javascript_ function A() { var oas = new

Re: CFX_Image oddity

2004-08-27 Thread joe velez
not sure if its a known bug, but sounds like it could be. i would assume the tag only wanted JPG and GIF file extensions ?? anyways, why not use CFFILE to save the file .. rename it YOURFILENAME.JPG removing the E from JPEG .. then proceed as you normally would btw, im looking for a cfx image

Re: CFX_Image oddity

2004-08-27 Thread Ray Champagne
Thanks for the tip, I think I will try that. What about the Alagad Image one? Might not be what you need, but maybe... http://www.alagad.com/index.cfm/name-aic Ray At 02:42 PM 8/27/2004, you wrote: not sure if its a known bug, but sounds like it could be. i would assume the tag only wanted

RE: CFX_Image oddity

2004-08-27 Thread Eric Creese
, August 27, 2004 1:44 PM To: CF-Talk Subject: Re: CFX_Image oddity Thanks for the tip, I think I will try that. What about the Alagad Image one? Might not be what you need, but maybe... http://www.alagad.com/index.cfm/name-aic Ray At 02:42 PM 8/27/2004, you wrote: not sure if its a known bug

Re: CFX_Image oddity

2004-08-27 Thread joe velez
im not sure about BEFORE they upload, but you could upload it, check it, and if it's too big delete itprobably not the best solution, but it works. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFX_Image oddity

2004-08-27 Thread Ray Champagne
Actually, what I am doing here is pretty much that.I am not sure there really *can* be a way to check a file before upload, how could you know until it resides on the server? Anyways, uploading, checking, deleting (if bad file) seems to work pretty well for me.I actually do a bunch of

Re: CFX_Image oddity

2004-08-27 Thread Qasim Rasheed
=33635320page=0scrollPos=0subcatid=0snid=sn106itemnumber=0extid=1017581catid=0 Qasim - Original Message - From: joe velez [EMAIL PROTECTED] Date: Fri, 27 Aug 2004 15:00:15 -0400 Subject: Re: CFX_Image oddity To: CF-Talk [EMAIL PROTECTED] im not sure about BEFORE they upload, but you could upload

RE: CFX_Image oddity

2004-08-27 Thread Eric Creese
well I had someone try to load a 17MB image file and it craashed my server. -Original Message- From: joe velez [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 2:00 PM To: CF-Talk Subject: Re: CFX_Image oddity im not sure about BEFORE they upload, but you could upload it, check

Re: cfx_image

2004-07-19 Thread Steph
you can download the tag and the docs from http://relativepath.net/cfximage/cfx_image.zip - Original Message - From: Mickael To: CF-Talk Sent: Saturday, July 17, 2004 12:00 AM Subject: cfx_image Hi Can anyone point me to where I can find the a tutorial on how to use CFX_Image?Or

Re: cfx_image

2004-07-19 Thread Pete Freitag
Mickael wrote: Can anyone point me to where I can find the a tutorial on how to use CFX_Image?Or the docs? http://www.kolumbus.fi/jukka.manner/ There are docs and examples in the zip file download. __ Pete Freitag http://www.cfdev.com/ Author of the

RE: cfx_image help?

2004-01-12 Thread Philip Arnold
I'm using cfx_image on a project I'm working on (CF5/Win2K).It does what I need it to, more or less, but documentation is pretty spotty. One thing I want to change is thumbnail generation; is there any way to make the auto-generated thumbnails NOT have the beveled edge effect, and also is

Re: cfx_image help?

2004-01-12 Thread Pete Ruckelshaus
I'm not wild about the look of the thumbnail either, but it does everything else I want it to do (reduce if 100px, won't enlarge if it's 100px) easily... Philip Arnold wrote: I'm using cfx_image on a project I'm working on (CF5/Win2K).It does what I need it to, more or less, but documentation

RE: CFX_Image

2004-01-07 Thread Craig Dudley
http://www.kolumbus.fi/jukka.manner/ -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: 07 January 2004 15:21 To: CF-Talk Subject: CFX_Image Can anyone point me to the web-site of the Author of CFX_Image? My hosting company needs to download the copy

RE: CFX_Image

2004-01-07 Thread Dan Phillips
I'm not sure of the original site but I have the tag and full docs on my site. The developer's info should be in there. http://relativepath.net/cfximage/ Dan Phillips CFXHosting.com 866.239.4678 x112 [EMAIL PROTECTED] -Original Message- From: Andy Ousterhout [mailto:[EMAIL

RE: CFX_Image

2004-01-07 Thread Andy Ousterhout
[mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 9:29 AM To: CF-Talk Subject: RE: CFX_Image I'm not sure of the original site but I have the tag and full docs on my site. The developer's info should be in there. http://relativepath.net/cfximage/ Dan Phillips CFXHosting.com 866.239.4678

RE: CFX_Image

2004-01-07 Thread Andy Ousterhout
Thanks. -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 9:22 AM To: CF-Talk Subject: RE: CFX_Image http://www.kolumbus.fi/jukka.manner/ -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: 07 January 2004 15:21

RE: CFX_Image

2004-01-07 Thread Dan Phillips
that tag installed on all of our servers. Dan Phillips CFXHosting.com 866.239.4678 x112 [EMAIL PROTECTED] -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 10:45 AM To: CF-Talk Subject: RE: CFX_Image Dan, This looks different from the one

Re: CFX_Image

2004-01-07 Thread Doug White
http://www.kolumbus.fi/jukka.manner/ == Stop spam on your domain, Anti-spam solutions http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com == Aspire to Inspire before you Retire or Expire!

RE: CFX_IMAGE

2003-07-03 Thread Stephenie Hamilton
That only lists Latest version is 1.4.8. and there is a newer better version. Use Dan Phillips link for the newest version. ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Benjamin Rosenthal [mailto:[EMAIL PROTECTED] Sent:

Re: CFX_IMAGE

2003-07-02 Thread Hassan Arteaga Rodríguez
I'd like to receive it also. Regards -- M. Sc. Hassan Arteaga Rodriguez Microsoft Certified System Engineer WEB Programmer. Network Admin -Original Message- From: Tim Do [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Wed, 2 Jul 2003 14:11:34 -0700 Subject: CFX_IMAGE Can

RE: CFX_IMAGE

2003-07-02 Thread Dan Phillips
Rodríguez [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 7:28 PM To: CF-Talk Subject: Re: CFX_IMAGE I'd like to receive it also. Regards -- M. Sc. Hassan Arteaga Rodriguez Microsoft Certified System Engineer WEB Programmer. Network Admin -Original Message- From: Tim Do [EMAIL

RE: CFX_IMAGE

2003-07-02 Thread Stephenie Hamilton
Is that the newest version of the tag? ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 5:31 PM To: CF-Talk Subject: RE: CFX_IMAGE Who ever wants it, http

RE: CFX_IMAGE

2003-07-02 Thread Dan Phillips
Version 1.6.6 Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original Message- From: Stephenie Hamilton [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 5:37 PM To: CF-Talk Subject: RE: CFX_IMAGE Is that the newest version of the tag? ~~ Stephenie

RE: CFX_IMAGE cf_AutoResize

2003-07-02 Thread Tim Do
- From: Dan Phillips [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 2:40 PM To: CF-Talk Subject: RE: CFX_IMAGE Version 1.6.6 Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original Message- From: Stephenie Hamilton [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: CFX_IMAGE

2003-07-02 Thread Costas Piliotis
Hahahahahahahahahahahaha... Sorry... Had to do it... Looks nice... Really... -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 2:31 PM To: CF-Talk Subject: RE: CFX_IMAGE Who ever wants it, http://relativepath.net/cfximage/cfx_image.zip

Re: CFX_Image Help

2002-12-17 Thread Ewok
1) I keep seeing in the HOF list archives that developers are using an ACTION=iml, though I can't find documentation for that attribute anywhere in the CFX_Image docs (v1.6.6.9). What does this Attribute do? Theres a text file on nothing but IML in the zip here.

RE: CFX_Image - Quality of images not good when rotating

2002-12-06 Thread Craig Dudley
, Craig. -Original Message- From: Craig Dudley Sent: 03 December 2002 16:38 To: CF-Talk Subject: RE: CFX_Image - Quality of images not good when rotating I'd stick to cfx_image then, it works well, can read and convert many, many formats. It's fast enough as well, as long as you don't

Re: CFX_Image - Quality of images not good when rotating

2002-12-05 Thread Tyler Silcox
:06 AM Subject: RE: CFX_Image - Quality of images not good when rotating Kind of interesting -- somebody sat down and wrote a custom tag to manipulate imagemagick. http://www.alagad.com/index.cfm/name-mtinfo -- jon - jon roig senior manager, online production epilepsy foundation

RE: CFX_Image - Quality of images not good when rotating

2002-12-05 Thread jon roig
PROTECTED] Sent: Thursday, December 05, 2002 12:06 AM Subject: RE: CFX_Image - Quality of images not good when rotating Kind of interesting -- somebody sat down and wrote a custom tag to manipulate imagemagick. http://www.alagad.com/index.cfm/name-mtinfo -- jon - jon roig senior

Re: CFX_Image - Quality of images not good when rotating

2002-12-04 Thread Kay Smoljak
Rick Faircloth wrote: I've reviewed it's description on your site. So the tag, when resizing an image, actually creates a separate file, outfile, when executed, right? And the smaller, thumbnail, is actually a new, smaller size (disk space size) than the original. You can specify what you

Re: CFX_Image - Quality of images not good when rotating

2002-12-04 Thread Mark Smeets
Awesome idea...one slight problem, where's the link to download it? -- Date: Tue, 3 Dec 2002 19:27:12 -0800 From: [EMAIL PROTECTED] Subject: Re: CFX_Image - Quality of images not good when rotating Message-ID: 010801c29b45

Re: CFX_Image - Quality of images not good when rotating

2002-12-04 Thread Jesse Houwing
Craig Dudley wrote: I have a java cfx that does this, but so far it only works with jpg's. It's very fast though. I'll gladly post the code on here should you want it. I think if you're going to use java tags in cf you should at least learn how to compile it yourself, you may understand how the

RE: CFX_Image - Quality of images not good when rotating

2002-12-04 Thread Ciliotta, Mario
-Original Message- From: Jesse Houwing [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 7:42 PM To: CF-Talk Subject: Re: CFX_Image - Quality of images not good when rotating Craig Dudley wrote: I have a java cfx that does this, but so far it only works with jpg's. It's very

RE: CFX_Image - Quality of images not good when rotating

2002-12-04 Thread jon roig
: [EMAIL PROTECTED] -Original Message- From: Mark Smeets [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 7:27 PM To: CF-Talk Subject: Re: CFX_Image - Quality of images not good when rotating Awesome idea...one slight problem, where's the link to download

Re: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Kay Smoljak
Mark Smeets [EMAIL PROTECTED] wrote: Has anyone experienced this when rotating images using this tag? The moment I rotate an image, the quality is degraded. I checked through the IML readme file that the tag comes with and after adding the quality command, there's been no improvement. Are you

RE: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Rick Faircloth
- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 10:12 AM To: CF-Talk Subject: Re: CFX_Image - Quality of images not good when rotating Mark Smeets [EMAIL PROTECTED] wrote: Has anyone experienced this when rotating images using this tag? The moment I rotate an image

RE: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Craig Dudley
that way. So I wont be sending anyone the actual cfx. Craig. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: 03 December 2002 15:52 To: CF-Talk Subject: RE: CFX_Image - Quality of images not good when rotating Hi, Kay. The cfx_pwimageproc tag looks very interesting

RE: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Rick Faircloth
: Tuesday, December 03, 2002 11:00 AM To: CF-Talk Subject: RE: CFX_Image - Quality of images not good when rotating I have a java cfx that does this, but so far it only works with jpg's. It's very fast though. I'll gladly post the code on here should you want it. I think if you're going to use java

RE: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Craig Dudley
code well, extra speed is always nice after all. Craig. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: 03 December 2002 16:32 To: CF-Talk Subject: RE: CFX_Image - Quality of images not good when rotating Hi, Craig. I'm a complete java novice. I've changed java

Re: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Zac Spitzer
Craig Dudley wrote: I'd stick to cfx_image then, it works well, can read and convert many, many formats. It's fast enough as well, as long as you don't run it on the front end of your site. just make sure your using the latest version too http://www.kolumbus.fi/jukka.manner/ z

RE: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Mark Smeets
Hi all, Actually it is a jpg which is being uploaded, (coming off a digital camera) but this is my own little thing, not a job (just making a picture gallery for my girlfriend - so not exactly willing to part with $$ for it) Any thoughts? Maybe I should just get the camera to convert the

Re: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Bob Haroche
Any thoughts? Maybe I should just get the camera to convert the files...wonder if photoshop can do a batch convert.(She's got like 400+photo's of her trip to cuba) Sorry that I missed the beginning of this thread, but if you're looking for an easy and free way to view, manipulate, batch

Re: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread Jason Miller
photoshop you can program it witht he history and macros fireworks with a scriplet imageready with I think they refer to a droplet all the same things - real simple batch compressions - BUT if it's personal and you just want to spend 3 minutes putting up 400 photos - try the feature photo album

Re: CFX_Image - Quality of images not good when rotating

2002-12-03 Thread cf-talk
Install Image Magick (it's free) and use CFEXECUTE. www.imagemagick.org -Novak - Original Message - From: Mark Smeets [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 03, 2002 4:31 PM Subject: RE: CFX_Image - Quality of images not good when rotating Hi all

RE: CFX_Image - Quality of images not good when rotating

2002-12-02 Thread Tony Weeg
ever tried rotating an image a bunch of times in photoshop, or sizing/resizing/sizing, you will see a degredation of quality this way as wellh wonder if its related? ...tony -Original Message- From: Mark Smeets [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 12:18

Re: CFX_IMAGE

2002-12-01 Thread Info
Just put together a thumb nail routine. cfx_image action=IML file=#request.app.site_root#photo_lib\thumb\#file.ServerFile# commands= setimage tmp=#variables.thumb_width#,#variables.height# useimage tmp bfrect 0,#variables.height#,#variables.thumb_width#,#variables.height#,ff rect

Re: SOLVED: Re: CFX_IMAGE

2002-11-29 Thread Cutter (CF_Talk)
Tell us, please... Cutter Bryan Stevenson wrote: Well...nobody responded, but I got it sorted out ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

SOLVED: Re: CFX_IMAGE

2002-11-28 Thread Bryan Stevenson
Well...nobody responded, but I got it sorted out ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Web Gallery Issues (Was Re: CFX_Image)

2002-11-13 Thread Mark Smeets
Hi everyone, Back to the cfx_image tag process for a bit. I managed to get it figured out (confusing tag) and now I'm working on the rest of my gallery. Here's the idea, instead of using frames, I want to load the thumbnails on the left, a medium sized image on the right and then the medium size

RE: CFX_Image Help-Resizing Doesn't work

2002-11-04 Thread Luis Lebron
Here is some code that I use to do this. This will create upload a file to the current directory, create a thumbnail (360 Height or 270 Width), copy the thumbnail to a graphics subdirectory and delete the original . The thumbnail is named filename_thumb cfif isdefined(Form.NewFile) cfset

RE: CFX_Image Issues

2002-08-24 Thread Kay Smoljak
Eric Dawson wrote: if you dig cfx_image has some parameters available to adjust quality. Not sure if you can get it to photoshop quality, but you can get it to produce a little better quality than I emailed Jukka Manner about the jpeg quality produced by cfx_image a long time ago - he

RE: CFX_Image Issues

2002-08-22 Thread Bosky, Dave
I've also noticed that the resized images are often very blurry. -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 22, 2002 10:03 AM To: CF-Talk Subject: CFX_Image Issues I'm attempting to use CFX_Image to resize photos of students. I use the

Re: CFX_Image Issues

2002-08-22 Thread Charlie Griefer
Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 22, 2002 7:08 AM Subject: RE: CFX_Image Issues I've also noticed that the resized images are often very blurry. -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent

Re: CFX_Image Issues

2002-08-22 Thread Dave Hannum
Are you going up in size or down in size? Dave - Original Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 22, 2002 10:08 AM Subject: RE: CFX_Image Issues I've also noticed that the resized images are often very blurry. -Original

RE: CFX_Image Issues

2002-08-22 Thread Bosky, Dave
Down -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 22, 2002 10:39 AM To: CF-Talk Subject: Re: CFX_Image Issues Are you going up in size or down in size? Dave - Original Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: CFX_Image docs

2002-07-26 Thread Lewis Sellers
On Fri, 26 Jul 2002 13:32:00 -0700, in cf-talk you wrote: Hey All, Does anybody have the docs for CFX_Image (current version 1.4.5 or older)?? I was under the impression that Jukka's most recent version don't have documents included because he was reworking them, thus you have to make do with

Re: CFX_Image docs

2002-07-26 Thread Bryan Stevenson
, July 26, 2002 2:08 PM Subject: Re: CFX_Image docs On Fri, 26 Jul 2002 13:32:00 -0700, in cf-talk you wrote: Hey All, Does anybody have the docs for CFX_Image (current version 1.4.5 or older)?? I was under the impression that Jukka's most recent version don't have documents included because

RE: CFX_image

2002-07-02 Thread Tien Vo
Thanks Mike, I will give it a try.. Tien -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 2 July 2002 4:22 PM To: CF-Talk Subject: RE: CFX_image Tien, we have had issues when we did not use CFLOCK tags around CFX tags. I would recommend trying

RE: CFX_image

2002-07-02 Thread Tien Vo
Mike, Nope, that did not solve it.. Tien. -Original Message- From: Tien Vo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 2 July 2002 4:56 PM To: CF-Talk Subject: RE: CFX_image Thanks Mike, I will give it a try.. Tien -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED

Re: CFX_image

2002-07-02 Thread Adam Churvis
, 2002 3:18 AM Subject: RE: CFX_image Mike, Nope, that did not solve it.. Tien. -Original Message- From: Tien Vo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 2 July 2002 4:56 PM To: CF-Talk Subject: RE: CFX_image Thanks Mike, I will give it a try.. Tien -Original Message

RE: CFX_Image

2002-05-21 Thread Dan Phillips
I have Version 1.6.6. Not sure if that is the version you want though. Contact me off list and I can pass it onto you. Dan Phillips CFXHosting.com -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 2:40 PM To: CF-Talk Subject: OT: CFX_Image

RE: cfx_image memory problems

2002-03-25 Thread Robert Everland
Have you tried using cflock around the tag? The tag may not be thread safe, so locking it would allow only one person to access it at a time. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent:

RE: cfx_image memory problems

2002-03-25 Thread Brunt, Michael
An elephant is a mouse with an operating system. -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 10:21 AM To: CF-Talk Subject: RE: cfx_image memory problems Have you tried using cflock around the tag? The tag may not be thread safe, so

RE: cfx_image memory problems

2002-03-25 Thread Brook Davies
25, 2002 10:21 AM To: CF-Talk Subject: RE: cfx_image memory problems Have you tried using cflock around the tag? The tag may not be thread safe, so locking it would allow only one person to access it at a time. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire

RE: cfx_image memory problems

2002-03-25 Thread Robert Everland
]] Sent: Monday, March 25, 2002 2:11 PM To: CF-Talk Subject: RE: cfx_image memory problems Thanks Guys. I will try that, but right now, the app is a single user app, so could this really be the problem? Brook At 10:32 AM 25/03/02 -0800, you wrote: Robert you hit a very important point. In my

RE: cfx_image memory problems

2002-03-25 Thread Brunt, Michael
- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 11:11 AM To: CF-Talk Subject: RE: cfx_image memory problems Thanks Guys. I will try that, but right now, the app is a single user app, so could this really be the problem? Brook At 10:32 AM 25/03/02 -0800, you wrote

Re: CFX_IMAGE original?

2001-05-09 Thread Dain Anderson
Michael, I've used the one by Jukka -- it's excellent. However, some folks have noted that the docs are a bit hazey. Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday,

RE: CFX_IMAGE original?

2001-05-09 Thread Russel Madere
I've use Jukka's tag quite a bit and it is good, but I work for a company involved with graphics. Jukka's tag just didn't cut it with us. But don't get me wrong. It is quite sufficient for what we needed. It resizes and composites acceptably. The antialiasing is fair. It could be better.

Re: CFX_IMAGE original?

2001-05-09 Thread Michael Lugassy
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 09, 2001 3:57 PM Subject: RE: CFX_IMAGE original? I've use Jukka's tag quite a bit and it is good, but I work for a company involved with graphics. Jukka's tag just didn't cut it with us. But don't get me wrong. It is quite

RE: CFX_IMAGE original?

2001-05-09 Thread Bill Poff
apps don't support either of these formats. --Bill -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 9:57 AM To: CF-Talk Subject: RE: CFX_IMAGE original? I've use Jukka's tag quite a bit and it is good, but I work for a company involved

RE: CFX_IMAGE

2001-04-26 Thread Rich Wild
Message- From: Dain Anderson [mailto:[EMAIL PROTECTED]] Sent: 25 April 2001 20:32 To: CF-Talk Subject: Re: CFX_IMAGE Rich, I'd be happy to, and I even thought about it at one point, but I didn't think there were that many people who still used it (considering it's

Re: CFX_IMAGE

2001-04-25 Thread Michael Lugassy
I've heard there are some problem with concurent conncetions to CFX.,.. true?| Kay Smoljak [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm about to use the tag CFX_IMAGE extensivley on my new project. Is it reliable enough? Is there anything I should

Re: CFX_IMAGE

2001-04-25 Thread Dain Anderson
25, 2001 4:37 AM Subject: Re: CFX_IMAGE I've heard there are some problem with concurent conncetions to CFX.,.. true?| Kay Smoljak [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm about to use the tag CFX_IMAGE extensivley on my new

RE: CFX_IMAGE

2001-04-25 Thread Rich Wild
otherwise explicitly and independently indicated by an authorised representative of e-mango.com ltd. --- -Original Message- From: Dain Anderson [mailto:[EMAIL PROTECTED]] Sent: 25 April 2001 09:00 To: CF-Talk Subject: Re: CFX_IMAGE

Re: CFX_IMAGE

2001-04-25 Thread Paul Hastings
I can't tell you how great that tag is -- with a little trial and error, you'll find that it's the best tag for this type of image creation and manipulation. Period. while i hardly ever agree with dain (just kidding), cfx_image is an excellent tag. we have a site that maintains an ever

Re: CFX_IMAGE

2001-04-25 Thread Michael Lugassy
where can I find the latest version? | - Original Message - From: Dain Anderson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001 9:59 AM Subject: Re: CFX_IMAGE I've used CFX_Image in a heavy production environment. In fact, we used it to literally

Re: CFX_IMAGE

2001-04-25 Thread Dain Anderson
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001 3:54 AM Subject: RE: CFX_IMAGE Yeah - Fantastic cfx but its a pity that I just can't decipher the documentation for it. I hope Jukka (if he's reading) isn't insulted, but its not the clearest thing in the world

Re: CFX_IMAGE

2001-04-25 Thread Dain Anderson
while i hardly ever agree with dain (just kidding), No! Not again! (just kidding, Paul -- I've decided to play nice, for now anyway ;-) Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ ~~ Structure your ColdFusion code with

RE: CFX_IMAGE

2001-04-25 Thread Stephenie Hamilton
!! -Original Message- From: Dain Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 3:36 PM To: CF-Talk Subject: Re: CFX_IMAGE while i hardly ever agree with dain (just kidding), No! Not again! (just kidding, Paul -- I've decided to play nice, for now anyway ;-) Dain

Re: CFX_Image - Synopsis

2001-04-25 Thread Dain Anderson
Eric, I think what you're wanting is essentially what others using that tag are hoping for. I surely didn't create the tag, but as I said earlier, I've considered writing some clearer instructions for it (or course these will not likely be included with the tag, unless Jukka re-surfaces and

RE: CFX_IMAGE

2001-04-24 Thread Shane Witbeck
I have used it and have not had any problems. Shane -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 3:58 PM To: CF-Talk Subject: CFX_IMAGE I'm about to use the tag CFX_IMAGE extensivley on my new project. Is it reliable enough? Is

Re: CFX_IMAGE

2001-04-24 Thread Kay Smoljak
I'm about to use the tag CFX_IMAGE extensivley on my new project. Is it reliable enough? Is there anything I should consider? mem usage? performance? Is there a better tag? We were using it and were very happy with its operation and feature set, except the quality of the jpegs it output, which

Re: cfx_image

2000-10-10 Thread Len Conrad
A commercial alternative is www.jasc.com for Image Robot. Can be called from CF or run stand-alone. Batch processing of unlimited number of images, applying to an image just about every feature of Paint Shop Pro 4. Crop, rotate, resample/resize, add borders, overlay an image (eg,

Re: cfx_image

2000-10-10 Thread Jim McAtee
A commercial alternative is www.jasc.com for Image Robot. Can be called from CF or run stand-alone. How can Image Robot be called from CF? Or do you mean spawning the executable? Jim -- Archives:

Re: cfx_image

2000-10-09 Thread Gena
What does this tag do? Cheers, Gennadi - Original Message - From: "Vincent" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 3:12 PM Subject: cfx_image hi, Does anyone have the cfx_image tag ? thanks, VIN

RE: cfx_image

2000-10-09 Thread Pete Freitag
PROTECTED]] Sent: Tuesday, October 10, 2000 2:17 AM To: CF-Talk Subject: Re: cfx_image What does this tag do? Cheers, Gennadi - Original Message - From: "Vincent" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 3:12 PM Subject: cfx_

  1   2   >