[cfaussie] CFIMAGE and transparent GIFs

2011-07-18 Thread Steve Onnis
Has anyone played around with this? I am resizing a transparent GIF and it is resizing but the image is coming through with the colors inverted and the transparency is all black Any ideas? Steve -- You received this message because you are subscribed to the Google Groups cfaussie

RE: [cfaussie] CFIMAGE and transparent GIFs

2011-07-18 Thread Andrew Scott
Steve, Here is what you can do for your scenario. // Create an image object.. Image = CreateObject(java, java.awt.image.BufferedImage); //Initialise image object.. Image.init( JavaCast(int, width), JavaCast(int, height), JavaCast(int, image.TYPE_INT_ARGB)); From here you now have

RE: [cfaussie] CFIMAGE and transparent GIFs

2011-07-18 Thread Steve Onnis
Can you do this and then pass this into the cfimage processing? Or will that just screw it up again? From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Monday, 18 July 2011 7:07 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] CFIMAGE and transparent GIFs Steve, Here

Re: [cfaussie] CFIMAGE and transparent GIFs

2011-07-18 Thread Andrew Scott
processing? Or will that just screw it up again? ** ** *From:* Andrew Scott [mailto:andr...@andyscott.id.au] *Sent:* Monday, 18 July 2011 7:07 PM *To:* cfaussie@googlegroups.com *Subject:* RE: [cfaussie] CFIMAGE and transparent GIFs ** ** Steve, ** ** Here is what you can do