vote up 1 vote down star
1

So I have this GIF file on my desktop (it's a 52 card deck of poker cards). I have been working on a program that cuts it up into little acm.graphics.GImages of each card. Now, however, I want to write those GImages or pixel arrays to a file so that I can use them later. I thought it would be as straight forward as writing .txt files, but a couple of Google searches later I am more confused than before.

So how do I go about making .gif files out of pixel arrays or GImages (I've got loads of both)?

flag

What is a GImage? What library is this? (Or what is the package import if you don't know?) – McDowell Dec 18 '08 at 15:36

3 Answers

vote up 5 vote down check

Something along these lines should do the trick (modify the image type, dimensions and pixel array as appropriate):

BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

WritableRaster raster = image.getRaster();
for ( i=0; i<width; i++ ) {
    for (  j=0; j<height; j++ ) {
        int[] colorArray = getColorForPixel(pixels[i][j]);
        raster.setPixel(i, j, colorArray);
    }
}

ImageIO.write(image, "gif", new File("CardImage"));

'getColorForPixel' will need to return an array representing the color for this pixel. In this case, using RGB, the colorArray will have three integers [red][green][blue].

Relevant javadoc: WritableRaster, BufferedImage and ImageIO.

link|flag
pixels is an int[][] of pixels yes? – Ziggy Dec 18 '08 at 14:15
Nope, my first answer was actually incorrect (sorry). Hopefully the edit will help. Unfortunately the javadoc for this method doesn't do a good job of describing what the array needs to be. – bcash Dec 18 '08 at 14:32
also! Having trouble with BufferedImage.TYPE_RGB trouble of the "cannot be resolved" variety"... – Ziggy Dec 18 '08 at 14:35
Corrected in the edit three. – bcash Dec 18 '08 at 14:37
Oh and what doc are you looking at! I should know that too! – Ziggy Dec 18 '08 at 14:37
show 3 more comments
vote up 1 vote down

I had to create GIF's out of Java Images for a university project, and I found this. I would recommend Acme's Open-Source GifEncoder Class. Nice and easy to use, I still remember it over 2 years later. Here's the link: http://www.acme.com/java/software/Acme.JPM.Encoders.GifEncoder.html

And here's the G-Link: http://www.google.com/search?hl=en&q=acme+java+gif&btnG=Search

link|flag
vote up -1 vote down

It doesn't really answer your question directly, but wouldn't it be easier to use ImageMagick? It has Java bindings.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.