I'm not 100% on this, but I've been able to merge 2 images together using
ImageCFC in the past.  Might want to check out that free alternative.  

Russ



> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Saturday, May 05, 2007 1:29 PM
> To: CF-Talk
> Subject: Re: Combining Images
> 
> This is why we created ImageFlare:
> 
> <cfx_imageflare source="
>   b1 = Bitmap('#expandpath('1.jpg')#')
>   b2 = Bitmap('#expandpath('2.jpg')#')
> 
>   gapsize = 5
>   fillcolor = Color('white')
> 
>   b3 = Bitmap(b1.width+b2.width+gapsize,b1.height)
> 
>   b3.fill(fillcolor)
> 
>   b3.paste(b1)
>   b3.paste(b2,b1.width+gapsize,0)
> 
>   b3.save('#expandpath('3.jpg')#')
> ">
> 
> http://www.efflare.com/products/cfx_imageflare/
> 
> --
>  CrystalM
> 
> > Hartsfield you joker <smile>,
> >
> > I know imageCR3 does not do this. I am asking nicely if
> > someone out there has done something like this with any kind
> > od CF scripting, tags, functions, cfs's, etc.
> >
> > I would appreciate any help in this as I know it has to be
> > out there, but I haven't found any examples yet.
> >
> > Terry Troxel
> >
> > -----Original Message-----
> > From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, May 05, 2007 7:45 AM
> > To: CF-Talk
> > Subject: RE: Combining Images
> >
> > Oh no! Someone finally found something that ImageCR3 can't
> > do!!! ;-)
> >
> > I don't see anything in the documentation about combining
> > multiple images into 1 with imageCR3, sorry. :-(
> >
> > I've never tried to do this either so I have no suggestions.
> >
> > ..... glad I could help lol
> >
> > Good luck
> >
> > -----Original Message-----
> > From: Terry Troxel [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, May 05, 2007 10:18 AM
> > To: CF-Talk
> > Subject: Combining Images
> >
> > Anyone know of a way to combine 2 images into one online?
> >
> > I am using imageCR3 and love it. I have two image upload
> > fields and imageCR3 resizes each image to 360 pixels wide
> > and I would like to end up with one image say 725 pixels
> > wide with a 5 pixel border between each image in the final
> > image.
> >
> > Terry
> >
> >
> >
> >
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >
> >
> >
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion MX7 by AdobeĀ®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277105
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to