Re: CF8 image resize makes picture too small??

2008-11-07 Thread Michael Christensen
Thanks for the heads up - I knew cfimage was too good to be true :o) Is this an officially known issue (i.e. Adobe acknowledges it) and if so, do you by any chance have a link to where this issue is described? ~| AdobeĀ®

Re: CF8 image resize makes picture too small??

2008-11-07 Thread Azadi Saryev
yes, it is a known issue. the workaround that worked for me is setting the width/height .1 pixel larger than needed: cfimage action=resize source=#mySource# width=160.1 height= name=oImage Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Michael Christensen wrote: I have a jpg, width =

CF8 image resize makes picture too small??

2008-11-07 Thread Michael Christensen
I have a jpg, width = 968px, height = 648px. I run the following command; cfimage action=resize source=#mySource# width=160 height= name=oImage and immediately after that; cfset this.nImageWidth = ImageGetWidth(oImage) cfset this.nImageHeight = ImageGetHeight(oImage) To my shock and horror,

RE: CF8 image resize makes picture too small??

2008-11-07 Thread Adrian Lynch
in this too. Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Michael Christensen Sent: 07 November 2008 10:54 To: cf-talk Subject: CF8 image resize makes picture too small?? I have a jpg, width = 968px, height = 648px. I run the following

Re: CF8 image resize makes picture too small??

2008-11-07 Thread Michael Christensen
With a picture that 600x400 I get width = 160 px (as I asked) and a height of 106px. So it seems it could be rounding-related Yup, I've seen it but it's never been an issue because it's only 1px out. I get that maintaining the aspect ratio will result in decimal values but even when it's

RE: CF8 image resize makes picture too small??

2008-11-07 Thread Adrian Lynch
image resize makes picture too small?? yes, it is a known issue. the workaround that worked for me is setting the width/height .1 pixel larger than needed: cfimage action=resize source=#mySource# width=160.1 height= name=oImage Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Michael

RE: CF8 image resize makes picture too small??

2008-11-07 Thread Adrian Lynch
It should get you 160x107 for the 968x648 image though. I wonder if it's a bug or if there's a valid reason for it? Adrian -Original Message- From: Michael Christensen Sent: 07 November 2008 11:14 To: cf-talk Subject: Re: CF8 image resize makes picture too small?? With a picture

Re: CF8 image resize makes picture too small??

2008-11-07 Thread Azadi Saryev
as stated here: http://cfsearching.blogspot.com/2008/04/coldfusion-8-imageresize-is-losing-it.html (thanks again to -==cfSearching==- from adobe cf forums!), it is a rounding problem and it is mentioned in CF8.0.1 release notes as a know issue. to absolutely make sure your resized image is of

Simple Image Resize

2008-01-09 Thread Richard Colman
There seem to be many custom tags, UDFs, packages around for image manipulation. My needs are a simple image resize, from the native image file to the desired size on the web page. Can someone with more experience in this area suggest the best approach. TNX for any help. Rick Colman

re: Simple Image Resize

2008-01-09 Thread Jake Churchill
PROTECTED] Sent: Wednesday, January 09, 2008 9:57 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Simple Image Resize There seem to be many custom tags, UDFs, packages around for image manipulation. My needs are a simple image resize, from the native image file to the desired size on the web page. Can

CF 8 Image resize help

2007-09-17 Thread Rick Sanders
Hey list, I'm having a problem using the image resize with a variable with CF 8. The error I'm getting is: Unable to cast an object of type java.lang.String to Image. The error occurred in E:\Websites\ironwillsports\submitvideo3.cfm: line 19 17

RE: CF 8 Image resize help

2007-09-17 Thread Jayesh Viradiya
=yes Thanks Jayesh Viradiya Adobe CF Team -Original Message- From: Rick Sanders [mailto:[EMAIL PROTECTED] Sent: Monday, September 17, 2007 9:18 AM To: CF-Talk Subject: CF 8 Image resize help Hey list, I'm having a problem using the image resize with a variable with CF 8

RE: CF 8 Image resize help

2007-09-17 Thread Jayesh Viradiya
Hi Rick, Your code should be as below as below and it should work. Inside ImageResize() function, you should pass the image Object created through ImageNew() function...that is, thumb and not oldthumb. oldthumb is a filename/path which is not accepted by ImageResize function. cfset oldthumb =

RE: CF 8 Image resize help

2007-09-17 Thread Rick Sanders
[mailto:[EMAIL PROTECTED] Sent: September-17-07 6:51 PM To: CF-Talk Subject: RE: CF 8 Image resize help Hi Rick, Your code should be as below as below and it should work. Inside ImageResize() function, you should pass the image Object created through ImageNew() function...that is, thumb

Image Resize Code

2007-05-04 Thread Rey Bango
I'm in need of an image resize component. Basically, it should take any uploaded image and be able to create resized versions in: 400x300, 180x135 67x50 preferably without losing image quality. I know of the Alagad suite which can handle my needs but before I buy one, I'd like to see

RE: Image Resize Code

2007-05-04 Thread Robert Rawlins - Think Blue
: Image Resize Code I'm in need of an image resize component. Basically, it should take any uploaded image and be able to create resized versions in: 400x300, 180x135 67x50 preferably without losing image quality. I know of the Alagad suite which can handle my needs but before I buy one, I'd

Re: Image Resize Code

2007-05-04 Thread Paul Glover
to install it on the server, it would be worth checking out, and is available in Windows and Linux/Unix versions. HTH, Paul. On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: I'm in need of an image resize component. Basically, it should take any uploaded image and be able to create resized

Re: Image Resize Code

2007-05-04 Thread Rick Root
www.opensourcecf.com/imagecfc Free, open source, works great. If you find the image quality to be acceptable, that's all you need. If not, check out ImageCR3 from Efflare. Rick On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: I'm in need of an image resize component. Basically, it should take

RE: Image Resize Code

2007-05-04 Thread Leitch, Oblio
There are. The real question is - do you have to write gif files? This uses the available Java code - http://www.opensourcecf.com/imagecfc/ -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Friday, May 04, 2007 9:31 AM To: CF-Talk Subject: Image Resize Code I'm

Re: Image Resize Code

2007-05-04 Thread Rey Bango
to be acceptable, that's all you need. If not, check out ImageCR3 from Efflare. Rick On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: I'm in need of an image resize component. Basically, it should take any uploaded image and be able to create resized versions in: 400x300, 180x135 67x50

Re: Image Resize Code

2007-05-04 Thread Rey Bango
be this one I used last year. http://www.webscriptsdirectory.com/ColdFusion/Image-Manipulation/ImageCFC-L3 852/ Rob -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: 04 May 2007 14:31 To: CF-Talk Subject: Image Resize Code I'm in need of an image resize

Re: Image Resize Code

2007-05-04 Thread Claude Schneegans
Basically, it should take any uploaded image and be able to create resized versions The best I found is CFX_IMAGECR3 cfx_cppedit.cfm?tagname=CFX%5FIMAGECR3. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm

Re: Image Resize Code

2007-05-04 Thread Rey Bango
Link? Claude Schneegans wrote: Basically, it should take any uploaded image and be able to create resized versions The best I found is CFX_IMAGECR3 cfx_cppedit.cfm?tagname=CFX%5FIMAGECR3. ~| Create Web Applications With

Re: Image Resize Code

2007-05-04 Thread Claude Schneegans
Link? www.google.com -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~|

Re: Image Resize Code

2007-05-04 Thread Rey Bango
Smartass! ;) LOL Rey... Claude Schneegans wrote: Link? www.google.com ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity. http://www.adobe.com/products/coldfusion?sdid=RVJW

Re: Image Resize Code

2007-05-04 Thread Massimo Foti
www.opensourcecf.com/imagecfc Here is a similar alternative, with a smaller set of API: http://www.olimpo.ch/tmt/cfc/tmt_img/ I agree with Rick, if the quality of the Java based ones don't fit your needs, check ImageCR3 Massimo Foti, web-programmer for hire Tools

Re: Image Resize Code

2007-05-04 Thread Rick Root
On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: I read this GIF files can be read and manipulated but they have to be saved as PNGs. Can ImageCFC take an uploaded gif file and create a resized version in jpg? I believe you can, but PNG would probably be a more suitable format for GIF conversion

Re: Image Resize Code

2007-05-04 Thread Aaron Roberson
Does anyone know what Costco Photo Center is using for their image manipulation? You can change an image from color to bw, sepia and maybe polarize. It also does crop, rotate, brighten exposure, red-eye reduction, and you can apply borders. Here is a link:

Re: Image Resize Code

2007-05-04 Thread Qasim Rasheed
I released an application for Image cropping, resizing on Adobe Exchange a while back. It uses Java Advance Image (JAI) API. Here is the link *http://tinyurl.com/2ax664 Thanks Qasim * On 5/4/07, Aaron Roberson [EMAIL PROTECTED] wrote: Does anyone know what Costco Photo Center is using for

Re: Image Resize - again

2006-08-24 Thread mac jordan
On 8/23/06, Les Mizzell [EMAIL PROTECTED] wrote: I don't have any specific code on the admin page that limits image size, but the instructions, right next to the d*mn file field clearly says in bold red Thumbnails must be 150px x 150px. I would neither trust nor expect a client to resize

RE: Image Resize - again

2006-08-24 Thread Jenny Gavin-Wear
ImageMagick gets my vote, too. I have it in use for a dating site, shopping carts and even a diets site. Jenny -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.405 / Virus Database: 268.11.5/426 - Release Date: 23/08/2006

Re: Image Resize - again

2006-08-24 Thread Rick Root
Jenny Gavin-Wear wrote: ImageMagick gets my vote, too. I have it in use for a dating site, shopping carts and even a diets site. if he can't use createObject(), he almost certainly won't be allowed to use CFEXECUTE either =) Les - I realize that you don't have access to the CF Administrator,

Image Resize - again

2006-08-23 Thread Les Mizzell
Oh boy - a client calls me earlier today. What's wrong with my site? My images page is crashing my browser/computer. The Images page has an admin behind it where the client can add thumbnails (defined as 150px x 150px), which obviously links to a detail page with description. I don't have any

Re: Image Resize - again

2006-08-23 Thread Jake Churchill
CFX_Image. Not sure if that's too much java but I use it. Les Mizzell wrote: Oh boy - a client calls me earlier today. What's wrong with my site? My images page is crashing my browser/computer. The Images page has an admin behind it where the client can add thumbnails (defined as 150px x

Re: Image Resize - again

2006-08-23 Thread Massimo Foti
So, I gotta FORCE correct sizes and/or resize the images when they upload them. The client is just too dumb to get it right on their own. The site is running CFMX on a shared Linux server - so I can't add anything or set paths through the CF Admin or anything like that - and many of the

Re: Image Resize - again

2006-08-23 Thread Casey Dougall
Lessons Learned Les, The Client is not dumb, sorry but you attempted to cut corners in your application and expected all would go well in the end. Who re-sizes images manually now days? You can use CFX_OPENIMAGE to take care of these types of problems in the future.

Re: Image Resize - again

2006-08-23 Thread Les Mizzell
The Client is not dumb, sorry but you attempted to cut corners in your application and expected all would go well in the end. ;-P So, if I get a speeding ticket for going 120 in a 65 zone, the car maker is dumb for not limiting the top speed of the car? Or am I dumb for not paying

Re: Image Resize - again

2006-08-23 Thread Mike Tangorre
If your client got a ticket every time they didn't follow instructions they'd probably resize the image prior to uploading it but since no web enforcement exists we must anticipate EVERY possibility and help the user along. :-) From: Les Mizzell [EMAIL PROTECTED] So, if I get a speeding

Re: Image Resize - again

2006-08-23 Thread Rick Root
Les Mizzell wrote: The site is running CFMX on a shared Linux server - so I can't add anything or set paths through the CF Admin or anything like that - and many of the custom tags I've already looked at need java libs and stuff. Whatever I do has to be local to just this one site. None

Re: Image Resize - again

2006-08-23 Thread Rick Root
Casey Dougall wrote: The Client is not dumb, sorry but you attempted to cut corners in your application and expected all would go well in the end. Who re-sizes images manually now days? I recently re-engineered a simple profile editor used to populate our online directory

Re: Image Resize - again

2006-08-23 Thread Casey Dougall
Les, I understand your frustration with this situation. You can do everything above and beond to show a client how to make the best use of their website (meaning, take the time to touch up every image you put on your site like your a MAXIM editor) but in the end, people don't have the time. I'm

Re: Image Resize - again

2006-08-23 Thread Mark Mandel
I'm trying to work out why you can't do this natively inline through Java - If you have a look at javax.imageio.ImageIO you should be able to find all you need. Let me know if you have any problems. Mark On 8/24/06, James Holmes [EMAIL PROTECTED] wrote: Is the Linux box actually headless? If

Image Resize Tag on Unix

2004-10-18 Thread Guy McDowell
Hi, We're looking forn image resize tag to use in a Unix/CFMX environment. Any leads? We're Googling to no avail. Truly, Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t: 613.228.3565 x6348 f: 613.228.8313 http://websites.magma.ca This e-mail message is confidential

Re: Image Resize Tag on Unix

2004-10-18 Thread Scott Stroz
Check out the Algad Image Component...http://www.alagad.com On Mon, 18 Oct 2004 09:57:42 -0400, Guy McDowell [EMAIL PROTECTED] wrote: Hi, We're looking forn image resize tag to use in a Unix/CFMX environment. Any leads? We're Googling to no avail. Truly, Guy McDowell Web Developer [EMAIL

Re: Image Resize Tag on Unix

2004-10-18 Thread Doug James
We use cfexecute and 'mogrify' to create thumbnails. You might take a look. Doug James Webmaster MUSC - Hollings Cancer Center 843.792.6357 http://hcc.musc.edu Guy McDowell wrote: Hi, We're looking forn image resize tag to use in a Unix/CFMX environment. Any leads? We're Googling to no avail

Re: Image Resize Tag on Unix

2004-10-18 Thread guy . mcdowell
The kicker is finding one that doesn't use CreateObject or cf_object or such (due to security implications). Truly, Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t: 613.228.3565 x6348 f: 613.228.8313 http://websites.magma.ca This e-mail message is confidential, may

Re: Image Resize Tag on Unix

2004-10-18 Thread Rick Root
Doug James wrote: We use cfexecute and 'mogrify' to create thumbnails. You might take a look. I bet if cfobject is disabled, so then will cfexecute =) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFC for image resize/crop

2004-10-14 Thread Doug Hughes
FYI -- The next version of the AIC will support setting the compression quality when writing images.This should help with the quality issues you guys have been having.(This should be out before too long.) Doug Hughes [EMAIL PROTECTED] On Thu, 7 Oct 2004 04:48:25 +0200, Massimo, Tiziana e

Re: CFC for image resize/crop

2004-10-14 Thread Raymond Camden
I'd just like to add - I finally got a chance to check out AIC and I was -extremely- impressed. If folks have image processing needs, they should check this out. I highly recommend it. (Ok, so sorry for the commercial. ;) On Thu, 14 Oct 2004 07:09:56 -0400, Doug Hughes [EMAIL PROTECTED] wrote:

Re: CFC for image resize/crop

2004-10-14 Thread Doug Hughes
Thanks for the good words, Ray! On Thu, 14 Oct 2004 08:50:06 -0500, Raymond Camden [EMAIL PROTECTED] wrote: I'd just like to add - I finally got a chance to check out AIC and I was -extremely- impressed. If folks have image processing needs, they should check this out. I highly recommend it.

Re: CFC for image resize/crop

2004-10-14 Thread Kwang Suh
I've been using Efflare's CFX_Image with fantastic results.It's much faster and consumes way less memory than any other resizer I've tried.As well, image resizing is fantastic with the myriad of algorithms they have. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

CFC for image resize/crop

2004-10-06 Thread Massimo, Tiziana e Federica
http://www.olimpo.ch/tmt/cfc/tmt_img I think I finally managed to achieve a pretty good quality for thumbnail generation. Please give it a try and let me know Massimo Foti DW tools: http://www.massimocorner.com CF tools:http://www.olimpo.ch/tmt/

Re: CFC for image resize/crop

2004-10-06 Thread Nathan Strutz
How did you get good quality on your resizing? I blogged this a couple weeks ago about alagad's image.cfc http://www.dopefly.com/techblog/entry.cfm?entry=22 -nathan strutz http://www.dopefly.com/ Massimo, Tiziana e Federica wrote: http://www.olimpo.ch/tmt/cfc/tmt_img I think I finally

Re: CFC for image resize/crop

2004-10-06 Thread Massimo, Tiziana e Federica
How did you get good quality on your resizing? There are a few quality parameters that can be set. You can see them by looking at the code I blogged this a couple weeks ago about alagad's image.cfc I am not familiar with alagad's cfc, apart from knowing it offers many features (mine is much

JAI Image resize gives rubbish images.

2004-02-17 Thread Stephen Moretti
Reading Java classes and methods and trying to work out how they all work and what I should be using has given me a permanent headache, so I hope someone out there can help. I've used and got working Matt Liota's ImageUtils cfc example/article.

Re: JAI Image resize gives rubbish images.

2004-02-17 Thread Matt Liotta
In the Java class you can replace InterpolationNearest with anyone of the following classes if you are looking to try different algorithms. InterpolationBicubic InterpolationBicubic2 InterpolationBilinear -Matt On Feb 17, 2004, at 9:27 AM, Stephen Moretti wrote: Reading Java classes and

RE: JAI Image resize gives rubbish images.

2004-02-17 Thread Adam Hope
is great, can't remember though. Adam. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: 17 February 2004 14:28 To: CF-Talk Subject: JAI Image resize gives rubbish images. Reading Java classes and methods and trying to work out how they all work and what I should

Re: JAI Image resize gives rubbish images.

2004-02-17 Thread Stephen Moretti
February 2004 14:28 To: CF-Talk Subject: JAI Image resize gives rubbish images. Reading Java classes and methods and trying to work out how they all work and what I should be using has given me a permanent headache, so I hope someone out there can help. I've used and got working Matt

Re: JAI Image resize gives rubbish images.

2004-02-17 Thread Matt Liotta
(); encodeParam.setQuality(quality); Where quality is a float. I belive 0.0 is crap and 1 is great, can't remember though. Adam. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: 17 February 2004 14:28 To: CF-Talk Subject: JAI Image resize gives rubbish images. Reading Java classes

Re: JAI Image resize gives rubbish images.

2004-02-17 Thread Rob Rohan
On Tue, 2004-02-17 at 06:27, Stephen Moretti wrote: Reading Java classes and methods and trying to work out how they all work and what I should be using has given me a permanent headache, so I hope someone out there can help. if your head ache gets to be greater than 30 bucks you just

Image resize tag (lets beat the subject some more)

2003-09-15 Thread Phillip B
I am using cfx_image to resize jpgs. I saw people talking about cfximage last week. Are these the same tags? Phillip B. www.LoungeRoyale.com www.FillWorks.com ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4

Image Resize CFX

2003-01-01 Thread Geoffrey Brown
Hi, I'm looking for a stable CFX for image resizing and obtaining image dimensions of both GIF and JPG images. This cfx will be run on a live, high traffic site, so stability is crucial. I'm presently using CFX_GIFGD, but I have occasional stability problems in my test environment. Can anyone

Re: Image Resize CFX

2003-01-01 Thread Charlie Griefer
I can't recommend cfx_imageCR highly enough. http://efflare.com/products/cfx_imagecr/ Original Message - From: Geoffrey Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 01, 2003 2:30 PM Subject: Image Resize CFX Hi, I'm looking for a stable CFX

Re: Image Resize CFX

2003-01-01 Thread Adam Churvis
://www.macromedia.com/support/forums/team_macromedia/ - Original Message - From: Charlie Griefer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 01, 2003 4:31 PM Subject: Re: Image Resize CFX I can't recommend cfx_imageCR highly enough. http://efflare.com/products

RE: Image Resize CFX

2003-01-01 Thread Geoffrey Brown
for ColdFusion http://www.macromedia.com/support/forums/team_macromedia/ - Original Message - From: Charlie Griefer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 01, 2003 4:31 PM Subject: Re: Image Resize CFX I can't recommend cfx_imageCR highly enough

RE: Image Resize without MS server

2002-11-21 Thread jon roig
to manipulate imagemagick from the commandline in CF. (Which isn't actually that evil...) -- jon -Original Message- From: jon hall [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 6:01 PM To: CF-Talk Subject: Re: Image Resize without MS server That statement is true only

Image Resize on non MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm looking for a custom tag to handle image resizing (gif, jpg, etc) that doesn't require a MS server (and is preferably free). Any ideas? Cutter Falcon Knives ~| Archives:

Re: Image Resize on non MS server

2002-11-20 Thread Bob Haroche
I'm looking for a custom tag to handle image resizing (gif, jpg, etc) that doesn't require a MS server (and is preferably free). Any ideas? I'm using cfx_image (free) on my development machine -- Win2K running Apache server/CF 5. - Regards, Bob Haroche O n P o i n t S o l u t i o

Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm trying to find a custom tag that will resize images on upload that does not require an MS server. Any suggestions? Cutter Falcon-Knives.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm trying to find a custom tag that will resize images on upload that does not require an MS server. Any suggestions? Cutter Falcon-Knives.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
So if I understand you correctly, you are looking for a custom tag that will resize images on upload that does not require an MS server. -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 12:11 PM To: CF-Talk Subject: Image Resize

RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
If the offlist thing I sent doesn't help search the archive, there was talk of this very thing about 2 days ago. Cheers, rob -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 12:11 PM To: CF-Talk Subject: Image Resize without MS

RE: Image Resize without MS server

2002-11-20 Thread Kevin Graeme
These have come up a few times. I haven't used them yet though. JAI (Sun's Java Advanced Imaging API) http://java.sun.com/products/java-media/jai/ http://www.macromedia.com/desdev/mx/coldfusion/articles/jai_images.html ImageJ http://rsb.info.nih.gov/ij/index.html

Re: Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
So, to recap, there is no way to resize images on a *nix based server, using CF MX, without installing some other piece of software (JAI, XWindows, etc.)? Cutter Falcon Knives Kevin Graeme wrote: These have come up a few times. I haven't used them yet though. JAI (Sun's Java Advanced Imaging

RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:19 PM To: CF-Talk Subject: Re: Image Resize without MS server So, to recap, there is no way to resize images on a *nix based server, using CF MX, without installing some other piece of software (JAI, XWindows, etc.)? Cutter Falcon Knives Kevin

Re: Image Resize without MS server

2002-11-20 Thread jon hall
That statement is true only if there is no current software installed on the server that resizes images...g There is no built in CF functions to resize images though. ImageMagick is another good option that I didn't see mentioned yet. http://www.imagemagick.org/ -- jon mailto:[EMAIL

Dynamic Image Resize

2001-02-06 Thread Tim Bahlke
I have seen a script before that enables images to resize as the user resizes their browser window. Does anyone have a snippet of code that can do this? Thanks, Tim Bahlke ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Dynamic Image Resize

2001-02-06 Thread Holger Lockertsen
04 / 91 83 20 51 * [EMAIL PROTECTED] * http://www.pixelduck.com/ -Original Message- From: Tim Bahlke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 4:00 PM To: CF-Talk Subject: Dynamic Image Resize I have seen a script before that enables images to resize

Re: Dynamic Image Resize

2001-02-06 Thread Kevin Schmidt
Unless the images were vectored and could resize proportionally :-) - Original Message - From: "Holger Lockertsen" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, February 06, 2001 9:57 AM Subject: RE: Dynamic Image Resize Why would you want tha

RE: Dynamic Image Resize

2001-02-06 Thread Thomas Chiverton
03 04 / 91 83 20 51 * [EMAIL PROTECTED] * http://www.pixelduck.com/ -Original Message- From: Tim Bahlke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 4:00 PM To: CF-Talk Subject: Dynamic Image Resize I have seen a script before that enables images to resize

RE: Dynamic Image Resize

2001-02-06 Thread Tim Bahlke
Actually, the script I've seen did not degrade the images at all. Tim Bahlke -Original Message- From: Holger Lockertsen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 10:58 AM To: CF-Talk Subject: RE: Dynamic Image Resize Why would you want that? - Unless you

Re: Dynamic Image Resize

2001-02-06 Thread t nelson
s and good luck, nelson Original Message Follows From: Tim Bahlke [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Dynamic Image Resize Date: Tue, 06 Feb 2001 10:00:22 -0500 Received: from [207.31.122.140] by hotmail.com (3.2) with ESMTP id MHotMailBC49

RE: Dynamic Image Resize

2001-02-06 Thread Tim Bahlke
-Original Message- From: t nelson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 12:24 PM To: CF-Talk Subject: Re: Dynamic Image Resize Tim, you could do this without a script like this: table height="100%" width="100%" tr t

RE: Dynamic Image Resize

2001-02-06 Thread Tim Bahlke
It was definitely a jpg. It was my image. -Original Message- From: J.J. Merrick [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 1:09 PM To: CF-Talk Subject: RE: Dynamic Image Resize Either it was a flash movie that they had just set to 100% or you have found

image resize

2000-10-03 Thread Jason Egan
I can't remember the name of this tag -- and there are dollarformat errors coming up on the dev site -- any one know of a tag to resize images??? if I remember right it is cfx_g... something... gfx??? anyone??? thanks! je

RE: image resize

2000-10-03 Thread Aidan Whitehall
any one know of a tag to resize images??? if I remember right it is cfx_g... something... gfx??? We've used ImageResize before and that's pretty good. The custom tag that you're supposed to interface with isn't all that, so we used the .dll directly (it's called Image.dll). -- Aidan

RE: image resize

2000-10-03 Thread Simon Halcrow
PROTECTED]] Sent: 03 October 2000 16:44 To: CF-Talk Subject: RE: image resize any one know of a tag to resize images??? if I remember right it is cfx_g... something... gfx??? We've used ImageResize before and that's pretty good. The custom tag that you're supposed

Re: image resize

2000-10-03 Thread JustinMacCarthy
And you can download it from min's page www.intrafoundation.com He didn't write it btw... Justin - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 4:44 PM Subject: RE: image resize a

RE: image resize

2000-10-03 Thread Aidan Whitehall
And you can download it from min's page www.intrafoundation.com He didn't write it btw... I'm not certain, but think you might be confusing ImageResize (and it's accompanying Image.dll) with Lewis' ImageInfo (which I thought Lewis did write). Can't seem to find ImageResize on the Gallery...

Re: image resize

2000-10-03 Thread JustinMacCarthy
Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 5:05 PM Subject: RE: image resize And you can download it from min's page www.intrafoundation.com He didn't write it btw... I'm not certain, but think you might be confusing I

RE: image resize

2000-10-03 Thread lsellers
Min has the dll on his site , but it's by Jukka Manner. (homepage???) With his permission of course. : Jukka doesn't seem to have a permanent homepage. At least that he's told me. Which is why I put up there actually. --min