CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
to assume the invitation was extended to everyone on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo MX tag since there appears to be nowhere it is hosted now. I need this because I need a FREE tag that will give me back atleast the DPI of a image. Thanks

Re: CF_ImageInfo MX

2005-07-28 Thread James Holmes
. Only one place did I even see atleast an offer from someone to, I am guessing, email the tag to a person looking for it. However I did not want to assume the invitation was extended to everyone on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo MX tag

Re: CF_ImageInfo MX

2005-07-28 Thread Andrew Grosset
on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo MX tag since there appears to be nowhere it is hosted now. I need this because I need a FREE tag that will give me back atleast the DPI of a image. Thanks -- Greg Johnson Owner Lead Technician [EMAIL

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
for it. However I did not want to assume the invitation was extended to everyone on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo MX tag since there appears to be nowhere it is hosted now. I need this because I need a FREE tag that will give me back

RE: CF_ImageInfo MX

2005-07-28 Thread Russ Michaels
] Sent: 28 July 2005 16:23 To: CF-Talk Subject: Re: CF_ImageInfo MX g, sosososo close. But the tag I need has to support TIF as well as other formats. This is all part of a big online image catalog project for a medical college. Sofar they have just been providing images in TIFF and JPG form

Re: CF_ImageInfo MX

2005-07-28 Thread Bryan Stevenson
Greg I can send you a couple of functions from my image CFC that will: -resize images (and scale by width or heightensuring a minimum thumbnail width or height) -get image width/height It doesn't get the DPI though (of course most web graphics are 72 dpi) :-( Let me know if you're

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
for it. However I did not want to assume the invitation was extended to everyone on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo MX tag since there appears to be nowhere it is hosted now. I need this because I need a FREE tag that will give me back

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
to a person looking for it. However I did not want to assume the invitation was extended to everyone on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo MX tag since there appears to be nowhere it is hosted now. I need this because I need a FREE tag

Re: CF_ImageInfo MX

2005-07-28 Thread Bryan Stevenson
g, sosososo close. But the tag I need has to support TIF as well as other formats. GregTIFs are a completely seperate beast (most image tags out there do not handle them).you need the JAI (Java Advanced Imaging) package to handle TIFs.there is also a demo app on the MM

Re: CF_ImageInfo MX

2005-07-28 Thread Claude Schneegans
I am also having to build in security to prevent people from screen scraping the images. For this, you should have a look at CFX_StampImage: http://www.contentbox.com/claude/customtags/stampImage/testStamp.cfm?p=hf -- ___ REUSE CODE! Use custom tags; See

Re: CF_ImageInfo MX

2005-07-28 Thread Claude Schneegans
TIFs are a completely seperate beast Furthermore, they are to be avoided in a Web environment since, most of the time, they are not compressed. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any

Re: CF_ImageInfo MX

2005-07-28 Thread Claude Schneegans
Thanks, I did have an older version as it turns out. The newest does have a DPI info result, Pardon my curiosity, but what actually do you need DPI for? I know that some image formats provide this kind of info, but it just makes no sense. DPI mesures the definition (what is also eroneously

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
I always like trying things, so ya, send it to me and I will mess around with it some. Thanks Bryan Stevenson wrote: Greg I can send you a couple of functions from my image CFC that will: -resize images (and scale by width or heightensuring a minimum thumbnail width or height) -get image

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
instead. Only one place did I even see atleast an offer from someone to, I am guessing, email the tag to a person looking for it. However I did not want to assume the invitation was extended to everyone on the list so instead I decided just to post asking if someone can email me the CF_ImageInfo

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
Thats nice. CFX_Image has something simmiler I think, I will have to compare them. Right now they just want to block period. I found a Flash applet that lets you view a preview at full size, then load the full size and scroll around. I have talked to my boss about watermarking, and I

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
Basicaly people inside the medical school will be able to choose images to use. Many times these images will be used to create print media. A 96dpi image which is fine for the web pixelates when you expand it to fit a given size. Most of these print publications will be generated on a high

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
the CF_ImageInfo MX tag since there appears to be nowhere it is hosted now. I need this because I need a FREE tag that will give me back atleast the DPI of a image. Thanks -- Greg Johnson Owner Lead Technician [EMAIL PROTECTED] Techno-Fix-It Filling the Gap Between the Store and the Repair Shop

Re: CF_ImageInfo MX

2005-07-28 Thread Bryan Stevenson
here ya go Greg: !---(Function: ImageSize)-- Date Created: November 28, 2003 Author: Bryan Arguments: FileLoc - full path of image to get details for (string) required Purpose:returns file width/height

Re: CF_ImageInfo MX

2005-07-28 Thread Bryan Stevenson
Hey Greg, I can send ya some code to convert the TIFFs to PDFs if ya like?? ;-) 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: CF_ImageInfo MX

2005-07-28 Thread Claude Schneegans
The people browsing the catalog online will need to know if the image they are downloading is of web or print quality. Then the only thing that matters is the width in pixels: about 800 px or less it is Web quality, one need at least 1024 or more for print quality. This has nothing to do with

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
Thanks. Will setup the size code and compare the execution time vs CFX_Image's read function to see which is faster as I am needing to dynamicly pull HW in loops on several pages. I will do the same with the tumbnail. Quickests wins :) Bryan Stevenson wrote: here ya go Greg:

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
Ya, I had thought about just purely giving a web or print designation and trying to get them to just take that as I know the only reason they want to see the DPI is for that exact reason, to determin if it's web or print. Its just a issue of convinceing them of that. But until then I have to

Re: CF_ImageInfo MX

2005-07-28 Thread Bryan Stevenson
- From: Greg Johnson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, July 28, 2005 10:12 AM Subject: Re: CF_ImageInfo MX Thanks. Will setup the size code and compare the execution time vs CFX_Image's read function to see which is faster as I am needing to dynamicly

Re: CF_ImageInfo MX

2005-07-28 Thread Greg Johnson
Ya, that would be good. I never know what they are going to throw at me next. hehe. Apparently our itty bitty department has managed to get more resources allocated to it. They were thinking of bringing in another person to help, but instead im just going to rearange my buisness so I can

Re: CF_ImageInfo MX

2005-07-28 Thread Bryan Stevenson
PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, July 28, 2005 10:17 AM Subject: Re: CF_ImageInfo MX Ya, that would be good. I never know what they are going to throw at me next. hehe. Apparently our itty bitty department has managed to get more resources allocated