Hi, please have a look at the following code (This is a test code, that's why you can see just a one class with a subclass and a simple GUI )
Now, what I need is, when the user click on the "Create" button, the generated output slideshow, should be saved in the user's computer as an Animated GIF or SWF or something that which can show the animated images when doubled clicked, or opened in web browser (Like animated GIF). I ahve no idea about how to do this. Please help me to achieve my task.. Thanks
Are you better than me? Then please show me my mistakes..
Searching the net for "java save animated gif" gave a few million results, and at least some of the first-page results were accompanied by code.
luck, db
There are no new questions, but there may be new answers.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 32769
posted
0
Note that GIF is an 8-bit format, so any conversion from JPEG to GIF will almost certainly result in a loss of quality. It will also present the non-trivial problem of which colors to use in the resulting GIF.
Darryl Burke wrote:Searching the net for "java save animated gif" gave a few million results, and at least some of the first-page results were accompanied by code.
Thanks for the info. Yes, I saw some of them. Will check and be back...
Ulf Dittmer wrote:Note that GIF is an 8-bit format, so any conversion from JPEG to GIF will almost certainly result in a loss of quality. It will also present the non-trivial problem of which colors to use in the resulting GIF.
Thanks for the info. I will definitely keep this in my mind when I am actually doing the project...
subject: Converting to an Animated GIF or something similar