> Does anyone have an ideo how to convert a gif file into a series of > hex-values, as needed when sending SMS picture messages?
I'm not sure exactly what SMS picture messages require, but my attempt to answer your question is this: - walk the image pixel by pixel, pulling each pixel's color using image.getPixel(x,y) - convert that pixel's rgb value to a hex value using rgbColor.hexString() Store your data in a list using a repeat loop. Does that help? Cheers, Tom Higgins Product Specialist - Director Team Macromedia [EMAIL PROTECTED] ... [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
