Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
/S, you Sir (or is it Ma'am?) are my hero! The settings in /tasks/widgets/ckfinder/config.cfm are indeed the correct ones. Now to find out how to keep the settings from being overwritten on a Mura update! Unlike the CKE config, I am not seeing any checks for an {SiteID} or {theme} level config

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
Thanks /S (that's a cool-ass name!). I should have known that, but for some reason it did not click. Thanks for pointing that out. I will take a peek at it as soon as I am able to get to it and report back. :-) On Mon, Aug 15, 2011 at 4:34 PM, wrote: > > Aa an FYI, I think the settings for

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread sslone
Aa an FYI, I think the settings for CKEditor and CKFinder are separate this is on or about line 60 of the CKFinder config.cfm @ /tasks/widgets/ckfinder/ in your Mura root. /* * set the maximum size of uploaded images * if uploaded image is larger, it gets scaled down * Set to 0 to disabl

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
Well, the CKE settings were worth a shot, but they have no affect on the File Manager uploads. To be clear, I added the following to my CKE config file: config.images.maxWidth = 1600; config.images.maxHeight = 1200; config.images.quality = 80; I then reloaded the application. Test upload; res

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread sslone
Matt- Check out the CKFinder developer docs for ColdFusion config and images ... http://docs.cksource.com/CKFinder_2.x/Developers_Guide/ColdFusion/Configuration/Images /S ~| Order the Adobe Coldfusion Anthology now! http://www.

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
Oooh, that looks promising! I didn't think CKEditor had anything to do with it, since it's in the File Manager, but I will definitely take a look at that! Thanks! On Mon, Aug 15, 2011 at 3:20 PM, wrote: > > Not sure if this is helpful or not :) > > You might look and see if this is a "f

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
Guust, Thanks again, and no worries. :-) I have had initial contact with Matt and Sean both, but they are (obviously) quite busy with final preparations for MuraCon, which I am looking forward to! If I've not found - or been pointed - in the right direction before then, I'm pretty confident th

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread sslone
Not sure if this is helpful or not :) You might look and see if this is a "feature" of CKFinder - though not sure if the file manage in Mura CMS is CKFinder or other code - as there seems to be some file upload ajax code as well. FROM: http://cksource.com/forums/viewtopic.php?f=10&t=13149 CK

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Guust Nieuwenhuis
Matt, In that case, I can't help you... Have you posted the issue on the forums of getmura.com? An other help might be the Mura Show next wednesday, where you can ask your question directly to the developers of Mura itself... http://www.getmura.com/support/mura-show/ On 15 Aug 2011, at 21:3

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
Guust, Thanks for the reply. I should have specified that the images we are uploading have nothing to do with a gallery or anything like that. They are *not* being uploaded via the Site Manager, but rather the File Manager. Additionally, they are being uploaded completely outside of the site fo

Re: Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Guust Nieuwenhuis
Matt, The default layout of a page is that it shows the 'medium size' image and when you click on it, it will show the full size image. If you don't want that 'medium size' image to be display, you have to overwrite the default layout of a page. Let me know if this is the case for you, then I

Mura CMS File Manager - Stop Image Resizing

2011-08-15 Thread Matt Quackenbush
I'm hoping that another Mura CMS user sees this and can point me in the right direction. I've done a lot of things attempting to solve this issue, but none have had any affect. *The Issue* When using Mura's File Manager to upload an image, the image is resized (scaled), and an additional thumbn

Re: Opinions about on the fly image resizing

2008-09-02 Thread Claude Schneegans
>>you only need wipe that directory clean and everything will start being regenerated. Very brilliant indeed. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.do

Re: Opinions about on the fly image resizing

2008-09-02 Thread Barney Boisvert
You can get the best of both worlds very easily. Create an empty directory to store all your thumbnails, and then write them all as "/thumbs/IMAGEID-WIDTH-HEIGHT.jpg" into your pages. Then use mod_rewrite to do a file existence check. If it exists, let Apache serve it out, otherwise have mod_rew

Re: Opinions about on the fly image resizing

2008-09-02 Thread Azadi Saryev
i totally agree with Claude: unless there is a better reason to not have thumbnail-sized images, you should not tax your server with all the cfimage resizing - it is a very memory-intensive operation. i use this on-the-fly functionality on one of the sites to add a watermark to a large-size preview

Re: Opinions about on the fly image resizing

2008-09-02 Thread Claude Schneegans
>>Any oppinion is appreciated. Well, IMO, the big idea of thumbnails is to show many images roughly and in the same page, so that the user can choose only the one in want in large format. Having to read and downsize 10 or 20 or more images is not really compatible with this purpose. The images

Re: Opinions about on the fly image resizing

2008-09-02 Thread Justin Scott
> Does anybody use this way of image processing instead of storing thumbnail > files on server or it is really not a best practice? Could I have somehow alt > text on my images? Any other pros or cons I haven't mentioned? ALT text would be controlled by the HTML calling the image, not the scrip

Opinions about on the fly image resizing

2008-09-02 Thread Aron Szanitter
I created a site and decided that in order to show image thumbnails on list pages I do not downsize images and store them phisicaly on server rather have only one larger (max 800x800px) image file which I read into memory resize it to thumbnail size and write it to the browser with the cfimage t

RE: Image resizing

2006-09-13 Thread Bobby Hartsfield
Faircloth [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 13, 2006 3:15 PM To: CF-Talk Subject: RE: Image resizing True, True...I've used their CFX_JPG tag for years...however, ImageCR is relatively expensive... Rick -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]

RE: Image resizing

2006-09-13 Thread Rick Faircloth
True, True...I've used their CFX_JPG tag for years...however, ImageCR is relatively expensive... Rick -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 13, 2006 2:32 PM To: CF-Talk Subject: RE: Image resizing The quality (and ov

Re: Image resizing

2006-09-13 Thread Claude Schneegans
>>The quality (and overall functionality) of ImageCR from Efflare.com has still not been matched as far as I'm concerned. Confirmed. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

Re: Image resizing

2006-09-13 Thread Zaphod Beeblebrox
that? > > Rick > > -Original Message- > From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 13, 2006 1:00 PM > To: CF-Talk > Subject: Re: Image resizing > > I had trouble resizing large images to smaller ones. They would come out > abou

RE: Image resizing

2006-09-13 Thread Bobby Hartsfield
er 12, 2006 5:44 PM To: CF-Talk Subject: Image resizing I know I've seen this topic posted before but I need some input. I need an image resizing program, preferably written in Java that has the ability to resize images but retain the quality. What I currently use is a cfx tag programmed i

RE: Image resizing

2006-09-13 Thread Rick Faircloth
er 13, 2006 1:00 PM To: CF-Talk Subject: Re: Image resizing I had trouble resizing large images to smaller ones. They would come out about 20 shades darker with the tmt_img tag. Of course, I didn't have a better java solution, so I opted for installing ImageMagick on

Re: Image resizing

2006-09-13 Thread Jake Churchill
server. > > > On 9/13/06, Larry Lyons <[EMAIL PROTECTED]> wrote: > >>> imageCFC (I forget who did it, maybe rick?) >>> Imagemagick from alagad.com >>> >>> Russ >>> -Original Message- >>> From: Jake Churchill [mailto:[

Re: Image resizing

2006-09-13 Thread Zaphod Beeblebrox
mageCFC (I forget who did it, maybe rick?) > >Imagemagick from alagad.com > > > >Russ > >-Original Message- > >From: Jake Churchill [mailto:[EMAIL PROTECTED] > >Sent: 12 September 2006 22:44 > >To: CF-Talk > >Subject: Image resizing > >

Re: Image resizing

2006-09-13 Thread Larry Lyons
>imageCFC (I forget who did it, maybe rick?) >Imagemagick from alagad.com > >Russ >-Original Message- >From: Jake Churchill [mailto:[EMAIL PROTECTED] >Sent: 12 September 2006 22:44 >To: CF-Talk >Subject: Image resizing > >I know I've seen this top

RE: Image resizing

2006-09-12 Thread Andy Matthews
Rick Root's image.cfc. Google for that search term and you'll find it. -Original Message- From: Jake Churchill [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 12, 2006 4:44 PM To: CF-Talk Subject: Image resizing I know I've seen this topic posted before but I need

RE: Image resizing

2006-09-12 Thread Snake
imageCFC (I forget who did it, maybe rick?) Imagemagick from alagad.com Russ -Original Message- From: Jake Churchill [mailto:[EMAIL PROTECTED] Sent: 12 September 2006 22:44 To: CF-Talk Subject: Image resizing I know I've seen this topic posted before but I need some input. I ne

Image resizing

2006-09-12 Thread Jake Churchill
I know I've seen this topic posted before but I need some input. I need an image resizing program, preferably written in Java that has the ability to resize images but retain the quality. What I currently use is a cfx tag programmed in C++. It does a good job but the smaller images a

Re: Image resizing on the fly?

2006-04-26 Thread Rick Root
Burns, John D wrote: > everytime. I'm not sure if .net is just better at doing it with very > little overhead or if the people doing it are a timebomb waiting to > explode on their server if they ever get significant traffic. I'd wager the latter. =) Rick ~~

RE: Image resizing on the fly?

2006-04-26 Thread Burns, John D
s Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 1:16 PM To: CF-Talk Subject: Re: Image resizing on the fly? John, Since you don't want to always be resizing on t

RE: Image resizing on the fly?

2006-04-25 Thread Terry Troxel
ageCR to create a thumbnail of each of the Files returned from the cfdirectory query. Terry -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 9:19 AM To: CF-Talk Subject: Image resizing on the fly? I've been using ImageCR3 to do some imag

RE: Image resizing on the fly?

2006-04-25 Thread Katz, Dov B \(IT\)
equests are sent Dov -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 1:16 PM To: CF-Talk Subject: Re: Image resizing on the fly? John, Since you don't want to always be resizing on the fly every time someone views an image, you might try

Re: Image resizing on the fly?

2006-04-25 Thread Rick Root
John, Since you don't want to always be resizing on the fly every time someone views an image, you might try something like this: and in showImge.cfm just use imageCFC to read the image dimensions. If the image hasn't been resized, resize it and save it back. Then use to send the image.

RE: Image resizing on the fly?

2006-04-25 Thread Burns, John D
[mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 12:29 PM To: CF-Talk Subject: RE: Image resizing on the fly? I've done this before. Basically what I do is create a Image proxy Assuming you have W, H, and ImageFilename variables, and that you pretty much want a specific dimens

RE: Image resizing on the fly?

2006-04-25 Thread Ben Nadel
. ... Ben Nadel www.bennadel.com -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 12:19 PM To: CF-Talk Subject: Image resizing on the fly? I've been using ImageCR3 to do some image resizing and in the past I've used imagemagick and alag

RE: Image resizing on the fly?

2006-04-25 Thread Katz, Dov B \(IT\)
cfm will do a This is the general idea, so 9 times out of 10 it just forwards your request onward... Dov -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 12:19 PM To: CF-Talk Subject: Image resizing on t

Image resizing on the fly?

2006-04-25 Thread Burns, John D
I've been using ImageCR3 to do some image resizing and in the past I've used imagemagick and alagad's image component. I've always done it where I've done file resizing at the time of upload. However, I'm facing a situation of having to display an unknown amount of

RE: image resizing

2004-11-16 Thread Ben Rogers
es, which can be cumbersome to work with. Ben Rogers http://www.c4.net v.508.240.0051 f.508.240.0057 > -Original Message- > From: Lawrence Ng [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 16, 2004 12:54 PM > To: CF-Talk > Subject: image resizing > > hello, >

Re: image resizing

2004-11-16 Thread Adam Haskell
Check out New Atlanta's Blue Dragon Beta. They have a nice image tag in there I beleive. www.newatlanta.com http://www.newatlanta.com/c/products/bluedragon-beta/download/home Adam H On Tue, 16 Nov 2004 10:51:28 -0800, Lawrence Ng <[EMAIL PROTECTED]> wrote: > free is always good... we should al

Re: image resizing

2004-11-16 Thread Lawrence Ng
free is always good... we should all live in a bartering system... money is the root of all evil; render unto Caesar what is Caesar's and what is God's God, you can server both God and money, etc. oh wait, that's for another thread .. hehehe thanks again everyone. >>> [EMAIL PROTECTED] 11/16/2

Re: image resizing

2004-11-16 Thread Bryan Stevenson
no prob...and hey...isn't free nice ;-) 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: image resizing

2004-11-16 Thread Lawrence Ng
thanks Bryan... I forgot that i could use java... silly me ... thanks everyone. L >>> [EMAIL PROTECTED] 11/16/2004 10:24:52 AM >>> If you're on MX...here's a function for ya to drop in a CFC: Enjoy ;-) Bryan Stevenson B.Comm. VP & Director of

Re: image resizing

2004-11-16 Thread cftalk
We provide a native commercial product for doing these things. CFX ImageCR 3 : http://efflare.com/products/cfx_imagecr You can resize, convert, crop, etc. You can also retrieve image dimensions and more with the GETIMAGEINFO mode. Additionally, since someone mentioned it, you can also strip ou

Re: image resizing

2004-11-16 Thread Bryan Stevenson
If you're on MX...here's a function for ya to drop in a CFC: Enjoy ;-) 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 PROTECT

Re: image resizing

2004-11-16 Thread Lawrence Ng
will do.. thank you >>> [EMAIL PROTECTED] 11/16/2004 10:20:24 AM >>> Check for CFX_image. It is great to resize images, even conditional resizing and creating icons. Also have a look at CFX_pureimage at the address below. Many images produced by digital cameras add an extra bloc of information, s

Re: image resizing

2004-11-16 Thread Claude Schneegans
Check for CFX_image. It is great to resize images, even conditional resizing and creating icons. Also have a look at CFX_pureimage at the address below. Many images produced by digital cameras add an extra bloc of information, sometimes up to 50 k, to the images, and this can take lots of space

Re: image resizing

2004-11-16 Thread Lawrence Ng
this is very useful to check the files I have in my directory ... thanks! >>> [EMAIL PROTECTED] 11/16/2004 10:07:20 AM >>> Hi, We've used CFX_ImageInfo which you can find: http://www.intrafoundation.com/cfx_imageinfo.asp and for mx at: http://www.intrafoundation.com/CFX_ImageInfoMX.asp It is

Re: image resizing

2004-11-16 Thread Lawrence Ng
thanks Massimo this looks nice. >>> [EMAIL PROTECTED] 11/16/2004 10:14:48 AM >>> > I know how to check for file types & sizes but its the dimension that I > want to check as well. http://www.olimpo.ch/tmt/cfc/tmt_img Massimo Foti DW tools: http://www.massimocor

Re: image resizing

2004-11-16 Thread Massimo, Tiziana e Federica
> I know how to check for file types & sizes but its the dimension that I > want to check as well. http://www.olimpo.ch/tmt/cfc/tmt_img Massimo Foti DW tools: http://www.massimocorner.com CF tools: http://www.olimpo.ch/tmt/ ~~~

Re: image resizing

2004-11-16 Thread Kevin Pechin
Hi, We've used CFX_ImageInfo which you can find: http://www.intrafoundation.com/cfx_imageinfo.asp and for mx at: http://www.intrafoundation.com/CFX_ImageInfoMX.asp It is a very simple tag that just returns the image information. -Kevin On Tue, 16 Nov 2004 10:04:03 -0800, Jordan Michaels <[EMA

Re: image resizing

2004-11-16 Thread Lawrence Ng
i'll see if I can find it.. thanks.. come to think of it, would simply resizing the image reduce download time? I mean it's the same file isn't it? h... >>> [EMAIL PROTECTED] 11/16/2004 10:04:03 AM >>> Hello Lawrence, I believe that tthere's a custom tag on the Macromedia Exchange that will

Re: image resizing

2004-11-16 Thread Jordan Michaels
Hello Lawrence, I believe that tthere's a custom tag on the Macromedia Exchange that will do this for you. The tag was free when I downloaded it a while back. HTH, Jordan Lawrence Ng wrote: >hello, > >I plan to build an app that would allow users to upload images to the >server for review. Her

image resizing

2004-11-16 Thread Lawrence Ng
hello, I plan to build an app that would allow users to upload images to the server for review. Here are the routines I want to try and implement 1. check's the image dimension before its updated (either by cffile or ftp) 2. Once it's uploaded, I want to resize it smaller for faster download and

RE: Image resizing tags on Linux?

2003-12-22 Thread Yves Arsenault
EMAIL PROTECTED]   Sent: 22 décembre 2003 13:55   To: CF-Talk   Subject: Re: Image resizing tags on Linux?   I can send you a CFC that will re-size on Windows and Linux (RedHat 9 and latest Apache).  It also will check uploaded image dimensions ;-)   It uses some Java and seems to be working just

Re: Image resizing tags on Linux?

2003-12-22 Thread Bryan Stevenson
verisland.com   - Original Message -   From: Yves Arsenault   To: CF-Talk   Sent: Monday, December 22, 2003 6:44 AM   Subject: RE: Image resizing tags on Linux?   Thanks for the response,   I'm using MX 6.1 on RedHat 9, Apache 2.0.48   I can use cfexecute.   Is Image Magi

Re: Image resizing tags on Linux?

2003-12-22 Thread Rick Root
Yves Arsenault wrote: > > Is Image Magick available in MM exchange? http://www.imagemagick.org/ It also comes as a redhat package I think. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Image resizing tags on Linux?

2003-12-22 Thread Burns, John
xchange there's some kind of custom tag or CFC wrapper or something. John Burns -Original Message- From: Yves Arsenault [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 9:44 AM To: CF-Talk Subject: RE: Image resizing tags on Linux? Thanks for the response, I'm using M

Re: Image resizing tags on Linux?

2003-12-22 Thread Massimo Foti
> I'm using MX 6.1 on RedHat 9, Apache 2.0.48 > I wrote a CFC: http://www.cfmentor.com/code/index.cfm?action=""> I know it can work on Linux, but you better read these first: http://devilm.com/archives/50.html http://blog.web-rat.com/archives/000171.cfm Hope it may help -

RE: Image resizing tags on Linux?

2003-12-22 Thread Yves Arsenault
Thanks for the response, I'm using MX 6.1 on RedHat 9, Apache 2.0.48 I can use cfexecute. Is Image Magick available in MM exchange? Yves   -Original Message-   From: Burns, John [mailto:[EMAIL PROTECTED]   Sent: 22 décembre 2003 10:36   To: CF-Talk   Subject: RE: Image resizing ta

RE: Image resizing tags on Linux?

2003-12-22 Thread Burns, John
Arsenault [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 9:33 AM To: CF-Talk Subject: Image resizing tags on Linux? Hello, Does anyone know of an image resizing tag that would run well on Linux? Thanks, Yves [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Image resizing tags on Linux?

2003-12-22 Thread Yves Arsenault
Hello, Does anyone know of an image resizing tag that would run well on Linux? Thanks, Yves [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Dynamic image resizing etc.

2003-11-17 Thread Nathan Strutz
1:06 PM   To: CF-Talk   Subject: RE: Dynamic image resizing etc.   There is a CFC or UDF or something on the Macromedia Exchange.   Personally I've always just built my string in a variable and then run   ImageMagick via CFEXECUTE.   -Novak   -Original Message-   From: John Burns [mai

RE: Dynamic image resizing etc.

2003-11-17 Thread cf-talk
-Talk Subject: RE: Dynamic image resizing etc. Do you have any information on imagemagick?  Are there any CFC wrappers for it? John Burns -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 2:45 PM To: CF-Talk Subject: RE: Dynamic image resizin

RE: Dynamic image resizing etc.

2003-11-17 Thread John Burns
Do you have any information on imagemagick?  Are there any CFC wrappers for it? John Burns -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 2:45 PM To: CF-Talk Subject: RE: Dynamic image resizing etc. Perhaps if ImageJ had a bicubic

RE: Dynamic image resizing etc.

2003-11-17 Thread cf-talk
E: Dynamic image resizing etc. Perhaps if ImageJ had a bicubic resizing option, it would be fine. But since not, I have had luck doing a few different things. 1. Blur your image before resizing. The thumbnailed image comes out about 97% as good as a bicubic resizing option, good enough for most. Ty

RE: Dynamic image resizing etc.

2003-11-17 Thread Nathan Strutz
10:12 AM   To: CF-Talk   Subject: Dynamic image resizing etc.   I've implemented a CFC that uses ImageJ Java classes to resize, rotate, add   text, etc. to images.  For the most part, I'm fairly happy, but the images   seem to come out a little bit distorted and not quite as clean as I

Dynamic image resizing etc.

2003-11-17 Thread John Burns
I've implemented a CFC that uses ImageJ Java classes to resize, rotate, add text, etc. to images.  For the most part, I'm fairly happy, but the images seem to come out a little bit distorted and not quite as clean as I'd like. Does anyone know of a better set of classes (preferably with a CFC wrapp

Re: options for image resizing tags

2002-04-15 Thread cftalk
I have to recommend our tag ImageCR... It's not free, but it is high quality. http://efflare.com/products/cfx_imagecr Also, a better than PHP image manipulation tag is in beta testing. --> Monday, April 15, 2002, 7:33:33 AM, you wrote: > I'm wanting to keep images uploaded within a certain siz

Re: options for image resizing tags

2002-04-15 Thread Richard Meredith-Hardy
CFX_IMAGE will do what you want, and a lot more. not sure where you get it at the moment (look in this list's archive, it will be there somewhere) but the latest version (1.4 I think) is thread safe. I have two very busy apps using it practically every page impression; fast with no problems. N

RE: options for image resizing tags

2002-04-15 Thread Benjamin S. Rogers
o: CF-Talk Subject: Re: options for image resizing tags > - Original Message - > From: "Craig Thomas" <[EMAIL PROTECTED]> > > http://www.cfdev.com/products/productdetail.cfm?id=6 Thanks, this is the one (free) tag I'd found already. 500KB seems a bit

RE: options for image resizing tags

2002-04-15 Thread Brad Roberts
com/developer/gallery/info.cfm?ID=50E6377D-1C4A-11D6 -83FC00508B94F85A&method=Full It works great and has good documentation. -Brad > -Original Message- > From: Gyrus [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 15, 2002 8:53 AM > To: CF-Talk > Subject: Re: options fo

Re: options for image resizing tags

2002-04-15 Thread Gyrus
> - Original Message - > From: "Craig Thomas" <[EMAIL PROTECTED]> > > http://www.cfdev.com/products/productdetail.cfm?id=6 Thanks, this is the one (free) tag I'd found already. 500KB seems a bit hefty - is this usual for this sort of tag? Still caught in whether to build site using a CF

RE: options for image resizing tags

2002-04-15 Thread Craig Thomas
http://www.cfdev.com/products/productdetail.cfm?id=6 I have never used this, but thought it may help. Craig -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 8:34 AM To: CF-Talk Subject: options for image resizing tags I'm wanting to keep i

options for image resizing tags

2002-04-15 Thread Gyrus
I'm wanting to keep images uploaded within a certain size. I'm cursing CF a bit because I'm aware that PHP has image manipulation functions built-in (anyone know if there's similar stuff upcoming in CF Neo/MX?). Well, the only solutions I can find are CFX tags. Are there any recommendations for f

Re: Image Resizing tags

2001-08-03 Thread Len Conrad
>Does anyone out there who's messed with tags like "CF_ImageSize" have any >info on the nature of the files these tags produce, especially when it comes >to running pre-compressed images through them? I'm digging around trying to >settle on one of these tags, but I don't want to end up tossing, s

Re: Image Resizing tags

2001-08-02 Thread Kay Smoljak
On Wed, 01 Aug 2001 14:01:28 -0400, "Pete Freitag" <[EMAIL PROTECTED]> wrote: >The reason the resize creates a larger file, is because most compression >algorithms for JPEG default at 75% where you might have made the file with >50 or 25% Our tag (cfx_pwimageproc) does allow you to specify the co

RE: Image Resizing tags

2001-08-01 Thread Pete Freitag
PROTECTED]) CFDEV.COM ColdFusion Developers Resources http://www.cfdev.com/ -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 1:05 PM To: CF-Talk Subject: Image Resizing tags Hey gang - Does anyone out there who's messed with tags

Image Resizing tags

2001-08-01 Thread Scott Weikert
Hey gang - Does anyone out there who's messed with tags like "CF_ImageSize" have any info on the nature of the files these tags produce, especially when it comes to running pre-compressed images through them? I'm digging around trying to settle on one of these tags, but I don't want to end up tos

Re: Image resizing question

2001-06-06 Thread Chad Gray
pictures as well. > >Let me know if this helps, > >Michael Lugassy, >Interactive Music Ltd. >www.imvamp.com > >- Original Message - >From: "Kelly Matthews" <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL PROTECTED]> >Sent: Wednesday, J

Re: Image resizing question

2001-06-06 Thread Michael Lugassy
quot; <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 7:38 PM Subject: RE: Image resizing question > Also don't force 100x100 just force the WIDTH to be 100 then you > wont have distortion from that either. a 300x200 image would ALWAYS > distort when forced into a squ

RE: Image resizing question

2001-06-06 Thread Kelly Matthews
: Wednesday, June 06, 2001 12:52 PM To: CF-Talk Subject: Image resizing question Hi Folks, I am looking for ideas on how to handle a problem: The site I am working on allows customers to upload their company logos for display on a public page. I'd like the logos to be 100x100 pixels but I h

RE: Image resizing question

2001-06-06 Thread Kelly Matthews
Sent: Wednesday, June 06, 2001 12:52 PM To: CF-Talk Subject: Image resizing question Hi Folks, I am looking for ideas on how to handle a problem: The site I am working on allows customers to upload their company logos for display on a public page. I'd like the logos to be 100x100 pixels but I have

RE: Image resizing question

2001-06-06 Thread Alii Design
EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 12:52 PM To: CF-Talk Subject: Image resizing question Hi Folks, I am looking for ideas on how to handle a problem: The site I am working on allows customers to upload their company logos for display on a public page. I'd like the logos to

RE: Image resizing question

2001-06-06 Thread Howarth, Craig (IBK-NY)
s you to get info on an image as well as resize. Not free, but works well and is well documented. Hope this was helpful. Craig > -Original Message- > From: Eron Cohen [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, June 06, 2001 12:52 PM > To: CF-Talk > Subject: Ima

Image resizing question

2001-06-06 Thread Eron Cohen
Hi Folks, I am looking for ideas on how to handle a problem: The site I am working on allows customers to upload their company logos for display on a public page. I'd like the logos to be 100x100 pixels but I have a feeling I can't really "require" that because alot of the clients won't have a c

Re: Dynamic Image Resizing

2001-02-10 Thread Terry - it-werks.com
gt; To: CF-Talk <[EMAIL PROTECTED]> Sent: Friday, February 09, 2001 12:08 PM Subject: Dynamic Image Resizing > Is there a way to dynamically resize an image other than custom CF tags? > > I have a site that builds a dynamic web page for each member. Image URLs > are stored in t

Dynamic Image Resizing

2001-02-09 Thread National Camps \(Alan\)
Is there a way to dynamically resize an image other than custom CF tags? I have a site that builds a dynamic web page for each member. Image URLs are stored in the database and are called to the page. Some of the stored images are larger that I would like and I trying to get any image over 400