Java Doc for TIFFDecodeParam.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » com » sun » media » 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 » 6.0 JDK Modules » Java Advanced Imaging » com.sun.media.jai.codec 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.media.jai.codec.TIFFDecodeParam

TIFFDecodeParam
public class TIFFDecodeParam implements ImageDecodeParam(Code)
An instance of ImageDecodeParam for decoding images in the TIFF format.

To determine the number of images present in a TIFF file, use the getNumPages() method on the ImageDecoder object that will be used to perform the decoding. The desired page number may be passed as an argument to the ImageDecoder.decodeAsRaster)() or decodeAsRenderedImage() methods.

For TIFF Palette color images, the colorMap always has entries of short data type, the color Black being represented by 0,0,0 and White by 65536,65536,65536. In order to display these images, the default behavior is to dither the short values down to 8 bits. The dithering is done by calling the decode16BitsTo8Bits method for each short value that needs to be dithered. The method has the following implementation: byte b; short s; s = s & 0xffff; b = (byte)((s >> 8) & 0xff); If a different algorithm is to be used for the dithering, this class should be subclassed and an appropriate implementation should be provided for the decode16BitsTo8Bits method in the subclass.

If the palette contains image data that is signed short, as specified by the SampleFormat tag, the dithering is done by calling decodeSigned16BitsTo8Bits instead. The method has the following implementation: byte b; short s; b = (byte)((s + Short.MIN_VALUE) >> 8); In order to use a different algorithm for the dithering, this class should be subclassed and the method overridden.

If it is desired that the Palette be decoded such that the output image is of short data type and no dithering is performed, the setDecodePaletteAsShorts method should be used.

This class is not a committed part of the JAI API. It may be removed or changed in future releases of JAI.
See Also:   TIFFDirectory




Constructor Summary
public  TIFFDecodeParam()
     Constructs a default instance of TIFFDecodeParam.

Method Summary
public  bytedecode16BitsTo8Bits(int s)
     Returns an unsigned 8 bit value computed by dithering the unsigned 16 bit value.
public  bytedecodeSigned16BitsTo8Bits(short s)
     Returns an unsigned 8 bit value computed by dithering the signed 16 bit value.
public  booleangetDecodePaletteAsShorts()
     Returns true if palette entries will be decoded as shorts, resulting in an output image with short datatype.
public  LonggetIFDOffset()
     Returns the value set by setIFDOffset() or null if no value has been set.
public  booleangetJPEGDecompressYCbCrToRGB()
     Whether JPEG-compressed YCbCr data will be converted to RGB.
public  voidsetDecodePaletteAsShorts(boolean decodePaletteAsShorts)
     If set, the entries in the palette will be decoded as shorts and no short to byte lookup will be applied to them.
public  voidsetIFDOffset(long offset)
     Sets the offset in the stream from which to read the image.
public  voidsetJPEGDecompressYCbCrToRGB(boolean convertJPEGYCbCrToRGB)
     Sets a flag indicating whether to convert JPEG-compressed YCbCr data to RGB.


Constructor Detail
TIFFDecodeParam
public TIFFDecodeParam()(Code)
Constructs a default instance of TIFFDecodeParam.




Method Detail
decode16BitsTo8Bits
public byte decode16BitsTo8Bits(int s)(Code)
Returns an unsigned 8 bit value computed by dithering the unsigned 16 bit value. Note that the TIFF specified short datatype is an unsigned value, while Java's short datatype is a signed value. Therefore the Java short datatype cannot be used to store the TIFF specified short value. A Java int is used as input instead to this method. The method deals correctly only with 16 bit unsigned values.



decodeSigned16BitsTo8Bits
public byte decodeSigned16BitsTo8Bits(short s)(Code)
Returns an unsigned 8 bit value computed by dithering the signed 16 bit value. This method deals correctly only with values in the 16 bit signed range.



getDecodePaletteAsShorts
public boolean getDecodePaletteAsShorts()(Code)
Returns true if palette entries will be decoded as shorts, resulting in an output image with short datatype.



getIFDOffset
public Long getIFDOffset()(Code)
Returns the value set by setIFDOffset() or null if no value has been set.



getJPEGDecompressYCbCrToRGB
public boolean getJPEGDecompressYCbCrToRGB()(Code)
Whether JPEG-compressed YCbCr data will be converted to RGB.



setDecodePaletteAsShorts
public void setDecodePaletteAsShorts(boolean decodePaletteAsShorts)(Code)
If set, the entries in the palette will be decoded as shorts and no short to byte lookup will be applied to them.



setIFDOffset
public void setIFDOffset(long offset)(Code)
Sets the offset in the stream from which to read the image. There must be an Image File Directory (IFD) at that position or an error will occur. If setIFDOffset() is never invoked then the decoder will assume that the TIFF stream is at the beginning of the 8-byte image header. If the directory offset is set and a page number is supplied to the TIFF ImageDecoder then the page will be the zero-relative index of the IFD in linked list of IFDs beginning at the specified offset with a page of zero indicating the directory at that offset.



setJPEGDecompressYCbCrToRGB
public void setJPEGDecompressYCbCrToRGB(boolean convertJPEGYCbCrToRGB)(Code)
Sets a flag indicating whether to convert JPEG-compressed YCbCr data to RGB. The default value is true. This flag is ignored if the image data are not JPEG-compressed.



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.