Java Doc for FileFormatReader.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » jj2000 » j2k » fileformat » reader » 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 » jj2000.j2k.fileformat.reader 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   jj2000.j2k.fileformat.reader.FileFormatReader

FileFormatReader
public class FileFormatReader implements FileFormatBoxes(Code)
This class reads the file format wrapper that may or may not exist around a valid JPEG 2000 codestream. Since no information from the file format is used in the actual decoding, this class simply goes through the file and finds the first valid codestream.
See Also:   jj2000.j2k.fileformat.writer.FileFormatWriter



Constructor Summary
public  FileFormatReader(RandomAccessIO in, J2KMetadata metadata)
    

Method Summary
public  long[]getCodeStreamPos()
    
public  ColorModelgetColorModel()
     Returns the color model created from the palette box.
public  intgetFirstCodeStreamLength()
    
public  intgetFirstCodeStreamPos()
    
public  voidreadBitsPerComponentBox(int length)
     Read the bits per component.
public  voidreadChannelDefinitionBox(int length)
    
public  voidreadColourSpecificationBox(int length)
     Read the color specifications.
public  voidreadComponentMappingBox(int length)
     Read the component mapping channel.
public  booleanreadContiguousCodeStreamBox(int length, long longLength)
    
public  voidreadFileFormat()
     This method checks whether the given RandomAccessIO is a valid JP2 file and if so finds the first codestream in the file.
public  booleanreadFileTypeBox(int length, long longLength)
    
public  booleanreadImageHeaderBox(int length)
    
public  voidreadIntPropertyBox(int length)
    
public  booleanreadJP2HeaderBox(int length)
    
public  voidreadPaletteBox(int length)
    
public  voidreadResolutionBox(int type, int length)
     Read the resolution.
public  voidreadURLBox(int length)
    
public  voidreadUUIDBox(int length)
    
public  voidreadUUIDListBox(int length)
    
public  voidreadXMLBox(int length)
    


Constructor Detail
FileFormatReader
public FileFormatReader(RandomAccessIO in, J2KMetadata metadata)(Code)
The constructor of the FileFormatReader
Parameters:
  in - The RandomAccessIO from which to read the file format




Method Detail
getCodeStreamPos
public long[] getCodeStreamPos()(Code)
This method creates and returns an array of positions to contiguous codestreams in the file The positions of the contiguous codestreams in the file



getColorModel
public ColorModel getColorModel()(Code)
Returns the color model created from the palette box.



getFirstCodeStreamLength
public int getFirstCodeStreamLength()(Code)
This method returns the length of the first contiguous codestreams in the file The length of the first contiguous codestream in the file



getFirstCodeStreamPos
public int getFirstCodeStreamPos()(Code)
This method returns the position of the first contiguous codestreams in the file The position of the first contiguous codestream in the file



readBitsPerComponentBox
public void readBitsPerComponentBox(int length) throws IOException(Code)
Read the bits per component.



readChannelDefinitionBox
public void readChannelDefinitionBox(int length) throws IOException(Code)
This method reads the Channel Definition box
exception:
  java.io.IOException - If an I/O error ocurred.



readColourSpecificationBox
public void readColourSpecificationBox(int length) throws IOException(Code)
Read the color specifications.



readComponentMappingBox
public void readComponentMappingBox(int length) throws IOException(Code)
Read the component mapping channel.



readContiguousCodeStreamBox
public boolean readContiguousCodeStreamBox(int length, long longLength) throws IOException, EOFException(Code)
This method skips the Contiguous codestream box and adds position of contiguous codestream to a vector
Parameters:
  pos - The position in the file
Parameters:
  length - The length of the JP2Header box long length The length of the JP2Header box if greater than 1<<32 false if the Contiguous codestream box was not found or invalidelse true
exception:
  java.io.IOException - If an I/O error ocurred.
exception:
  java.io.EOFException - If the end of file was reached



readFileFormat
public void readFileFormat() throws IOException, EOFException(Code)
This method checks whether the given RandomAccessIO is a valid JP2 file and if so finds the first codestream in the file. Currently, the information in the codestream is not used
Parameters:
  in - The RandomAccessIO from which to read the file format
exception:
  java.io.IOException - If an I/O error ocurred.
exception:
  java.io.EOFException - If end of file is reached



readFileTypeBox
public boolean readFileTypeBox(int length, long longLength) throws IOException, EOFException(Code)
This method reads the File Type box false if the File Type box was not found or invalid else true
exception:
  java.io.IOException - If an I/O error ocurred.
exception:
  java.io.EOFException - If the end of file was reached



readImageHeaderBox
public boolean readImageHeaderBox(int length) throws IOException, EOFException(Code)
This method reads the Image Header box
Parameters:
  length - The length of the JP2Header box false if the JP2Header box was not found or invalid else true
exception:
  java.io.IOException - If an I/O error ocurred.
exception:
  java.io.EOFException - If the end of file was reached



readIntPropertyBox
public void readIntPropertyBox(int length) throws IOException(Code)
This method reads the contents of the Intellectual property box



readJP2HeaderBox
public boolean readJP2HeaderBox(int length) throws IOException, EOFException(Code)
This method reads the JP2Header box
Parameters:
  pos - The position in the file
Parameters:
  length - The length of the JP2Header box long length The length of the JP2Header box if greater than1<<32 false if the JP2Header box was not found or invalid else true
exception:
  java.io.IOException - If an I/O error ocurred.
exception:
  java.io.EOFException - If the end of file was reached



readPaletteBox
public void readPaletteBox(int length) throws IOException(Code)
This method reads the content of the palette box



readResolutionBox
public void readResolutionBox(int type, int length) throws IOException(Code)
Read the resolution.



readURLBox
public void readURLBox(int length) throws IOException(Code)
This method reads the contents of the XML box



readUUIDBox
public void readUUIDBox(int length) throws IOException(Code)
This method reads the contents of the Intellectual property box



readUUIDListBox
public void readUUIDListBox(int length) throws IOException(Code)
This method reads the contents of the UUID List box



readXMLBox
public void readXMLBox(int length) throws IOException(Code)
This method reads the contents of the XML box



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.