Source Code Cross Referenced for XTIFFTileCodec.java in  » GIS » openjump » org » libtiff » jai » codec » 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 » GIS » openjump » org.libtiff.jai.codec 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package org.libtiff.jai.codec;
02:
03:        import java.awt.Rectangle;
04:        import java.awt.image.RenderedImage;
05:        import java.awt.image.WritableRaster;
06:        import java.io.IOException;
07:
08:        /**
09:         * The XTIFFTileCodec is the common interface used by all 
10:         * registered implementations of TIFF data compression.
11:         * Unlike other file formats, TIFF has no fixed set of
12:         * data compressions schemes, but allows for new and
13:         * user-defined compression types.
14:         *<p>
15:         * To use a new codec with the XTIFFDirectory you must
16:         * do the following things:
17:         * <ul> 
18:         * <li> register XTIFF methods with JAI through the XTIFFDescriptor
19:         * <li> implement the methods below; it is recommended to 
20:         *      use the XTIFFTileCodecImpl class for this purpose, as
21:         *      it reduces the problem to one of defining the actual
22:         *      data compression and decompression algorithms. If you
23:         *      do not support encoding (e.g LZW), be sure the canEncode()
24:         *      methods returns false.
25:         * <li> register the implemented code with the XTIFFDirectory,
26:         *      indicating in the register method all TIFF compression
27:         *      codes that this codec can handle.
28:         * </ul>
29:         * @see XTIFFTileCodecImpl
30:         */
31:        public interface XTIFFTileCodec {
32:
33:            /**
34:             * Create a codec for encoding data.
35:             * @param param the encoding parameter. It is the responsibility
36:             * of the codec to initialize itself from this parameter. 
37:             */
38:            public XTIFFTileCodec create(XTIFFEncodeParam param)
39:                    throws IOException;
40:
41:            /**
42:             * Create a codec for decoding
43:             * @param param the decoding parameter. It is the responsibility
44:             * of the codec to initialize itself from this parameter. 
45:             */
46:            public XTIFFTileCodec create(XTIFFDecodeParam param)
47:                    throws IOException;
48:
49:            /**
50:             * Encode some data from RenderedImage, and return the
51:             * actual number of bytes stored in output buffer.
52:             */
53:            public int encode(RenderedImage im, Rectangle rect, byte[] output);
54:
55:            /**
56:             * Decode input byte data into a new WritableRaster, using
57:             * information from underlying RenderedImage
58:             */
59:            public WritableRaster decode(RenderedImage im, Rectangle rect,
60:                    byte[] input);
61:
62:            /**
63:             * Return the associated TIFF compression code
64:             */
65:            public int getCompression();
66:
67:            /**
68:             * Return the largest possible compressed buffer size 
69:             * for this image in bytes. This is used by the XTIFFImage
70:             * constructor to allocate a decoding buffer.
71:             */
72:            public int getCompressedTileSize(RenderedImage im);
73:
74:            /**
75:             * Register this codec with the XTIFFDirectory.
76:             * The method may register itself with multiple 
77:             * TIFF compression codes, if it supports more than
78:             * one.
79:             * @see XTIFFDirectory
80:             */
81:            public void register();
82:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.