Re: Graphic Manipulation in Coldfusion question.

2005-04-04 Thread Massimo Foti
This offers less features compared to Alagad, but it may worth a check since
it's free:

http://www.olimpo.ch/tmt/cfc/tmt_img


Massimo Foti
DW tools: http://www.massimocorner.com
CF tools:  http://www.olimpo.ch/tmt/



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201324
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-31 Thread Adrian Lynch
I've done this with only one div, am I missing something regarding the use
of two?



Which gets the top half of a 200x200 image. Works ok on IE and FF on PC.

Ade

-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
Sent: 30 March 2005 20:28
To: CF-Talk
Subject: Re: Graphic Manipulation in Coldfusion question.


Jeff,

You'll have to test this, but you should be able to assign the graphic
an idea and then, using CSS, set your clip region to "clip off" the
excess pixels. Better option may be to place the image in a div (a)
within another div (b) and set the clip region to div b while setting
the width and height to div a. You would also want to set the overflow
CSS attribute to "hidden".

Cutter

Jeff Waris wrote:
> Here is what I need to do, hopefully someone out there has done something
> close. I need to remove (or not display) the bottom 30 or so pixels of a
> JPEG file and then display it to the user. Can this be done on the fly?
> Using what? I am running CFMX6.1, so a solution would need to be
compatible.
>
>
> Thanks!
> Jeff
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.8.5 - Release Date: 29/03/2005


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201113
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Simeon Bateman
As someone who wrote a java class to tie into they JAI and then wrote
a cfc wrapper to that class for this solution, I would definatly
recommend the Alagad component.

Its 100% CF, and its quick and has alot of functionality.  Not to
mention that the time required to do it on your own, far out weighs
the cost of the license.  $75 covers one server and you can use
mappings to get that done so you dont need multiple copies of the
file.

Image.cfc is a great tool.

simeon


On Wed, 30 Mar 2005 15:11:27 -0500, Jeff Waris <[EMAIL PROTECTED]> wrote:
> Connie,
> 
> Definitely removed, so I think I am going to check out the image tags
> suggested earlier...
> 
> Jeff
> 
> 
> > -Original Message-
> > From: Connie DeCinko [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, March 30, 2005 3:00 PM
> > To: CF-Talk
> > Subject: RE: Graphic Manipulation in Coldfusion question.
> >
> >
> > Two things come to mind...
> >
> > 1.  Perhaps via CSS only display a portion of the image.
> > 2.  Use one of the image tags and crop the image.
> >
> > Depends upon if you want that lower portion hidden or removed.
> >
> >
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200795
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Jeff Waris
Connie,

Definitely removed, so I think I am going to check out the image tags
suggested earlier...

Jeff
 

> -Original Message-
> From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, March 30, 2005 3:00 PM
> To: CF-Talk
> Subject: RE: Graphic Manipulation in Coldfusion question.
> 
> 
> Two things come to mind...
> 
> 1.  Perhaps via CSS only display a portion of the image.
> 2.  Use one of the image tags and crop the image.
> 
> Depends upon if you want that lower portion hidden or removed.
>  
> 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200792
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Jeff Waris
It's looking like it going to be one of the image manipulation tags since I
would like the user to (If they desire) to save the image.

Jeff
 

> -Original Message-
> From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, March 30, 2005 2:49 PM
> To: CF-Talk
> Subject: Re: Graphic Manipulation in Coldfusion question.
> 
> 
> Jeff,
> 
> Well, that does change things a little. You could always layer a 
> transparent "spacer" gif over your image. Then if they try the right 
> click save option they are actually saving the transparent 
> gif. Or you 
> could have a custom right click menu associated with the image that 
> doesn't give them the option at all. Unless you want them to 
> be able to 
> save your "finalized" image (cropped), at which point I would suggest 
> using the JAI, maybe through the alagad image component or one of the 
> other ones that are out there...
> 
> Cutter
> 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200791
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Connie DeCinko
Two things come to mind...

1.  Perhaps via CSS only display a portion of the image.
2.  Use one of the image tags and crop the image.

Depends upon if you want that lower portion hidden or removed.
 

-Original Message-
From: Jeff Waris [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 8:25 AM
To: CF-Talk
Subject: Graphic Manipulation in Coldfusion question.

Here is what I need to do, hopefully someone out there has done something
close. I need to remove (or not display) the bottom 30 or so pixels of a
JPEG file and then display it to the user. Can this be done on the fly?
Using what? I am running CFMX6.1, so a solution would need to be compatible.


Thanks!
Jeff




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200786
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Cutter (CF-Talk)
Jeff,

Well, that does change things a little. You could always layer a 
transparent "spacer" gif over your image. Then if they try the right 
click save option they are actually saving the transparent gif. Or you 
could have a custom right click menu associated with the image that 
doesn't give them the option at all. Unless you want them to be able to 
save your "finalized" image (cropped), at which point I would suggest 
using the JAI, maybe through the alagad image component or one of the 
other ones that are out there...

Cutter

Jeff Waris wrote:
> Cutter,
> 
> Correct me if I am wrong, but you could still right click and save the
> graphic and retain the entire image once saved. I don't want them to be able
> to do that. That's why I was thinking of actually manipulating the image so
> that the image displayed to the user does not contain that part of the
> cropped part of the image.
> 
> Jeff
> 
> 
> 
>>-Original Message-
>>From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
>>Sent: Wednesday, March 30, 2005 2:28 PM
>>To: CF-Talk
>>Subject: Re: Graphic Manipulation in Coldfusion question.
>>
>>
>>Jeff,
>>
>>You'll have to test this, but you should be able to assign 
>>the graphic 
>>an idea and then, using CSS, set your clip region to "clip off" the 
>>excess pixels. Better option may be to place the image in a div (a) 
>>within another div (b) and set the clip region to div b while setting 
>>the width and height to div a. You would also want to set the 
>>overflow 
>>CSS attribute to "hidden".
>>
>>Cutter
> 
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200783
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Jeff Waris
Cutter,

Correct me if I am wrong, but you could still right click and save the
graphic and retain the entire image once saved. I don't want them to be able
to do that. That's why I was thinking of actually manipulating the image so
that the image displayed to the user does not contain that part of the
cropped part of the image.

Jeff


> -Original Message-
> From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, March 30, 2005 2:28 PM
> To: CF-Talk
> Subject: Re: Graphic Manipulation in Coldfusion question.
> 
> 
> Jeff,
> 
> You'll have to test this, but you should be able to assign 
> the graphic 
> an idea and then, using CSS, set your clip region to "clip off" the 
> excess pixels. Better option may be to place the image in a div (a) 
> within another div (b) and set the clip region to div b while setting 
> the width and height to div a. You would also want to set the 
> overflow 
> CSS attribute to "hidden".
> 
> Cutter


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200779
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Cutter (CF-Talk)
Jeff,

You'll have to test this, but you should be able to assign the graphic 
an idea and then, using CSS, set your clip region to "clip off" the 
excess pixels. Better option may be to place the image in a div (a) 
within another div (b) and set the clip region to div b while setting 
the width and height to div a. You would also want to set the overflow 
CSS attribute to "hidden".

Cutter

Jeff Waris wrote:
> Here is what I need to do, hopefully someone out there has done something
> close. I need to remove (or not display) the bottom 30 or so pixels of a
> JPEG file and then display it to the user. Can this be done on the fly?
> Using what? I am running CFMX6.1, so a solution would need to be compatible.
> 
> 
> Thanks!
> Jeff
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200773
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Jeff Waris
Thanks for the info guys...

www.easel2.com
http://www.alagad.com/index.cfm/name-home
http://www.efflare.com/

I'll be looking at these tonight when I get some time...

Jeff


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread kola.oyedeji
> -Original Message-
> From: Jeff Waris [mailto:[EMAIL PROTECTED]
> Sent: 30 March 2005 15:42
> To: CF-Talk
> Subject: RE: Graphic Manipulation in Coldfusion question.
> 
> Mark
> 
> The problem is when a call is made to get these images for viewing,
> another
> system copies a temporary jpg in directory for viewing. I have no control
> on
> how the image is created.
> 
> Jeff
> 
> > -Original Message-
> > From: Mark Smyth [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, March 30, 2005 10:34 AM
> > To: CF-Talk
> > Subject: RE: Graphic Manipulation in Coldfusion question.
> >
> >
> > Hi Jeff
> > I may well be missing something, but wouldn't you be better
> > off doing this using flash or even an animated gif?
> > Mark
> 
> 

I've used imgCR from Efflare, works well

http://www.efflare.com/






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200725
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Jeff Waris
Mark

The problem is when a call is made to get these images for viewing, another
system copies a temporary jpg in directory for viewing. I have no control on
how the image is created.

Jeff

> -Original Message-
> From: Mark Smyth [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, March 30, 2005 10:34 AM
> To: CF-Talk
> Subject: RE: Graphic Manipulation in Coldfusion question.
> 
> 
> Hi Jeff
> I may well be missing something, but wouldn't you be better 
> off doing this using flash or even an animated gif? 
> Mark


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200724
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Matt
We had one of our Java developers write a Java CFX tag to take care of
creating thumbnails, cropping images and retrieving image metadata
using JAI.

On Wed, 30 Mar 2005 09:57:17 -0600, Raymond Camden <[EMAIL PROTECTED]> wrote:
> I'd like to throw in another vote for Alagad. It is a -very- nice component.
> 
> 
> On Wed, 30 Mar 2005 10:35:01 -0500, Dave Carabetta <[EMAIL PROTECTED]> wrote:
> > On Wed, 30 Mar 2005 10:24:40 -0500, Jeff Waris <[EMAIL PROTECTED]> wrote:
> > > Here is what I need to do, hopefully someone out there has done something
> > > close. I need to remove (or not display) the bottom 30 or so pixels of a
> > > JPEG file and then display it to the user. Can this be done on the fly?
> > > Using what? I am running CFMX6.1, so a solution would need to be 
> > > compatible.
> > >
> >
> > http://www.alagad.com/index.cfm/name-home
> >
> > Regards,
> > Dave.
> >
> >
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200723
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Raymond Camden
I'd like to throw in another vote for Alagad. It is a -very- nice component.


On Wed, 30 Mar 2005 10:35:01 -0500, Dave Carabetta <[EMAIL PROTECTED]> wrote:
> On Wed, 30 Mar 2005 10:24:40 -0500, Jeff Waris <[EMAIL PROTECTED]> wrote:
> > Here is what I need to do, hopefully someone out there has done something
> > close. I need to remove (or not display) the bottom 30 or so pixels of a
> > JPEG file and then display it to the user. Can this be done on the fly?
> > Using what? I am running CFMX6.1, so a solution would need to be compatible.
> >
> 
> http://www.alagad.com/index.cfm/name-home
> 
> Regards,
> Dave.
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200716
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Robertson-Ravo, Neil (RX)
www.easel2.com




-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED] 
Sent: 30 March 2005 16:35
To: CF-Talk
Subject: Re: Graphic Manipulation in Coldfusion question.

On Wed, 30 Mar 2005 10:24:40 -0500, Jeff Waris <[EMAIL PROTECTED]> wrote:
> Here is what I need to do, hopefully someone out there has done something
> close. I need to remove (or not display) the bottom 30 or so pixels of a
> JPEG file and then display it to the user. Can this be done on the fly?
> Using what? I am running CFMX6.1, so a solution would need to be
compatible.
> 

http://www.alagad.com/index.cfm/name-home

Regards,
Dave.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200709
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Dave Carabetta
On Wed, 30 Mar 2005 10:24:40 -0500, Jeff Waris <[EMAIL PROTECTED]> wrote:
> Here is what I need to do, hopefully someone out there has done something
> close. I need to remove (or not display) the bottom 30 or so pixels of a
> JPEG file and then display it to the user. Can this be done on the fly?
> Using what? I am running CFMX6.1, so a solution would need to be compatible.
> 

http://www.alagad.com/index.cfm/name-home

Regards,
Dave.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200707
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Mark Smyth
Hi Jeff
I may well be missing something, but wouldn't you be better off doing this
using flash or even an animated gif? 
Mark
-Original Message-
From: Jeff Waris [mailto:[EMAIL PROTECTED] 
Sent: 30 March 2005 15:25
To: CF-Talk
Subject: Graphic Manipulation in Coldfusion question.

Here is what I need to do, hopefully someone out there has done something
close. I need to remove (or not display) the bottom 30 or so pixels of a
JPEG file and then display it to the user. Can this be done on the fly?
Using what? I am running CFMX6.1, so a solution would need to be compatible.


Thanks!
Jeff




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200706
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Jeff Waris
Here is what I need to do, hopefully someone out there has done something
close. I need to remove (or not display) the bottom 30 or so pixels of a
JPEG file and then display it to the user. Can this be done on the fly?
Using what? I am running CFMX6.1, so a solution would need to be compatible.


Thanks!
Jeff


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200704
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54