Java Doc for GIFEncoder.java in  » Swing-Library » Swinglets » com » javelin » swinglets » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Swing Library » Swinglets » com.javelin.swinglets 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.javelin.swinglets.GIFEncoder

GIFEncoder
public class GIFEncoder (Code)
GIFEncoder is a class which takes an image and saves it to a stream using the GIF file format (Graphics Interchange Format). A GIFEncoder is constructed with either an AWT Image (which must be fully loaded) or a set of RGB arrays. The image can be written out with a call to write.

Three caveats:

  • GIFEncoder will convert the image to indexed color upon construction. This will take some time, depending on the size of the image. Also, actually writing the image out (Write) will take time.

  • The image cannot have more than 256 colors, since GIF is an 8 bit format. For a 24 bit to 8 bit quantization algorithm, see Graphics Gems II III.2 by Xialoin Wu. Or check out his C source.

  • Since the image must be completely loaded into memory, GIFEncoder may have problems with large images. Attempting to encode an image which will not fit into memory will probably result in the following exception:

    java.awt.AWTException: Grabber returned false: 192

GIFEncoder is based upon gifsave.c, which was written and released by:

Sverre H. Huseby
Bjoelsengt. 17
N-0468 Oslo
Norway

Phone: +47 2 230539
sverrehu@ifi.uio.no


version:
   DWC 0.91 1997-09-28 derived from version 0.90 21 Apr 1996
author:
   Adam Doppelt
author:
   David W. Croft


Field Summary
 ImageDescriptorid_
    
 intnumColors_
    
 bytepixels_colors_
    
 ScreenDescriptorsd_
    
 shortwidth_height_
    

Constructor Summary
public  GIFEncoder(Image image)
     Construct a GIFEncoder.
public  GIFEncoder(byte r, byte g, byte b)
     Construct a GIFEncoder.
public  GIFEncoder(short width, short height, int[] values)
    
Parameters:
  values - An array of 24-bit color values.

Method Summary
 voidtoIndexedColor(byte r, byte g, byte b)
    
public static  voidtoRGB(short width, short height, int[] values, byte[][] r, byte[][] g, byte[][] b)
     Loads the values of three 8-bit arrays (red, green, blue) of arrays ([ width ] [ height ]) with the masked values from a 24-bit color array of length width * height.
Parameters:
  values - An array of 24-bit color values.
public synchronized  voidwrite(OutputStream output)
     Writes the image out to a stream in the GIF file format.

Field Detail
id_
ImageDescriptor id_(Code)



numColors_
int numColors_(Code)



pixels_colors_
byte pixels_colors_(Code)



sd_
ScreenDescriptor sd_(Code)



width_height_
short width_height_(Code)




Constructor Detail
GIFEncoder
public GIFEncoder(Image image) throws AWTException(Code)
Construct a GIFEncoder. The constructor will convert the image to an indexed color array. This may take some time.


Parameters:
  image - The image to encode. The image must becompletely loaded.
exception:
  AWTException - Will be thrown if the pixel grab fails. Thiscan happen if Java runs out of memory. It may also indicate that the imagecontains more than 256 colors.




GIFEncoder
public GIFEncoder(byte r, byte g, byte b) throws AWTException(Code)
Construct a GIFEncoder. The constructor will convert the image to an indexed color array. This may take some time.

Each array stores intensity values for the image. In other words, r[x][y] refers to the red intensity of the pixel at column x, row y.


Parameters:
  r - An array containing the red intensity values.
Parameters:
  g - An array containing the green intensity values.
Parameters:
  b - An array containing the blue intensity values.
exception:
  AWTException - Will be thrown if the image contains more than256 colors.




GIFEncoder
public GIFEncoder(short width, short height, int[] values) throws AWTException(Code)

Parameters:
  values - An array of 24-bit color values. The length of values[]must be width * height. There must be 256 colors or less.
author:
   David W. Croft




Method Detail
toIndexedColor
void toIndexedColor(byte r, byte g, byte b) throws AWTException(Code)



toRGB
public static void toRGB(short width, short height, int[] values, byte[][] r, byte[][] g, byte[][] b) throws AWTException(Code)
Loads the values of three 8-bit arrays (red, green, blue) of arrays ([ width ] [ height ]) with the masked values from a 24-bit color array of length width * height.
Parameters:
  values - An array of 24-bit color values. The length of values[]must be width * height. There must be 256 colors or less.
author:
   David W. Croft



write
public synchronized void write(OutputStream output) throws IOException(Code)
Writes the image out to a stream in the GIF file format. This will be a single GIF87a image, non-interlaced, with no background color. This may take some time.


Parameters:
  output - The stream to output to. This should probably be abuffered stream.
exception:
  IOException - Will be thrown if a write operation fails.




Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.