Source Code Cross Referenced for RgbFile.java in  » 6.0-JDK-Modules » java-3d » org » jdesktop » j3d » loaders » vrml97 » impl » 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 3d » org.jdesktop.j3d.loaders.vrml97.impl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $RCSfile: RgbFile.java,v $
003:         *
004:         * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
005:         *
006:         * Redistribution and use in source and binary forms, with or without
007:         * modification, are permitted provided that the following conditions
008:         * are met:
009:         *
010:         * - Redistribution of source code must retain the above copyright
011:         *   notice, this list of conditions and the following disclaimer.
012:         *
013:         * - Redistribution in binary form must reproduce the above copyright
014:         *   notice, this list of conditions and the following disclaimer in
015:         *   the documentation and/or other materials provided with the
016:         *   distribution.
017:         *
018:         * Neither the name of Sun Microsystems, Inc. or the names of
019:         * contributors may be used to endorse or promote products derived
020:         * from this software without specific prior written permission.
021:         *
022:         * This software is provided "AS IS," without a warranty of any
023:         * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
024:         * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
025:         * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
026:         * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL
027:         * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
028:         * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
029:         * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
030:         * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
031:         * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
032:         * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR
033:         * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
034:         * POSSIBILITY OF SUCH DAMAGES.
035:         *
036:         * You acknowledge that this software is not designed, licensed or
037:         * intended for use in the design, construction, operation or
038:         * maintenance of any nuclear facility.
039:         *
040:         * $Revision: 1.1 $
041:         * $Date: 2006/04/24 16:45:54 $
042:         * $State: Exp $
043:         */
044:
045:        package org.jdesktop.j3d.loaders.vrml97.impl;
046:
047:        import java.io.BufferedInputStream;
048:        import java.io.FileNotFoundException;
049:        import java.io.FileInputStream;
050:        import java.io.InputStream;
051:        import java.awt.image.BufferedImage;
052:        import java.io.IOException;
053:        import java.awt.image.DataBuffer;
054:        import java.awt.image.DataBufferByte;
055:        import java.awt.image.ComponentColorModel;
056:        import java.awt.image.WritableRaster;
057:        import java.awt.color.ColorSpace;
058:        import java.awt.Transparency;
059:
060:        class RgbFile extends BufferedInputStream {
061:
062:            // Header data
063:            short dimension;
064:            short xSize;
065:            short ySize;
066:            short zSize;
067:
068:            String filename;
069:
070:            private static final int DEBUG = 0;
071:
072:            short getShort() throws IOException {
073:                int t1 = (short) read();
074:                if (t1 == -1)
075:                    throw new IOException("Unexpected EOF");
076:                int t2 = (short) read();
077:                if (t2 == -1)
078:                    throw new IOException("Unexpected EOF");
079:                return (short) ((t1 << 8) | t2);
080:            } // End of getShort()
081:
082:            byte getByte() throws IOException {
083:                int t = read();
084:                if (t == -1)
085:                    throw new IOException("Unexpected EOF");
086:                return (byte) t;
087:            } // End of getByte
088:
089:            int getInt() throws IOException {
090:                int ret = 0;
091:                for (int i = 0; i < 4; i++) {
092:                    int t = read();
093:                    if (t == -1)
094:                        throw new IOException("Unexpected EOF");
095:                    ret = (ret << 8) | t;
096:                }
097:                return ret;
098:            } // end of getInt
099:
100:            public BufferedImage getImage() throws IOException {
101:                short magic = getShort();
102:
103:                if (magic != 474)
104:                    throw new IOException("Unrecognized file format.");
105:
106:                byte storage = getByte();
107:
108:                if (storage != 0)
109:                    throw new IOException("RLE Compressed files not supported");
110:
111:                byte bpc = getByte();
112:                dimension = getShort();
113:                xSize = getShort();
114:                ySize = getShort();
115:                zSize = getShort();
116:                int pixMin = getInt();
117:                int pixMax = getInt();
118:                skip(84l);
119:                int colorMap = getInt();
120:
121:                if ((DEBUG & 1) != 0) {
122:                    System.out.println(filename + ":");
123:                    System.out.println("  bpc = " + bpc);
124:                    System.out.println("  dimension = " + dimension);
125:                    System.out.println("  xSize = " + xSize);
126:                    System.out.println("  ySize = " + ySize);
127:                    System.out.println("  zSize = " + zSize);
128:                    System.out.println("  pixMin = " + pixMin);
129:                    System.out.println("  pixMax = " + pixMax);
130:                    System.out.println("  colorMap = " + colorMap);
131:                }
132:
133:                if ((pixMin != 0) || (pixMax != 0xff) || (colorMap != 0)
134:                        || (bpc != 1))
135:                    throw new IOException("Unsupported options in file");
136:
137:                skip(404l);
138:
139:                ComponentColorModel cm = null;
140:                if (zSize == 1) {
141:                    // Black and White image
142:                    ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
143:
144:                    int[] nBits = { 8 };
145:                    cm = new ComponentColorModel(cs, nBits, false, false,
146:                            Transparency.OPAQUE, DataBuffer.TYPE_BYTE);
147:
148:                } else if (zSize == 2) {
149:                    // Black and White image with alpha
150:                    ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
151:
152:                    int[] nBits = { 8, 8 };
153:                    cm = new ComponentColorModel(cs, nBits, true, false,
154:                            Transparency.TRANSLUCENT, DataBuffer.TYPE_BYTE);
155:
156:                } else if (zSize == 3) {
157:                    // RGB Image
158:                    ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_sRGB);
159:
160:                    int[] nBits = { 8, 8, 8 };
161:                    cm = new ComponentColorModel(cs, nBits, false, false,
162:                            Transparency.OPAQUE, DataBuffer.TYPE_BYTE);
163:
164:                } else if (zSize == 4) {
165:                    // RGBA Image
166:                    ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_sRGB);
167:
168:                    int[] nBits = { 8, 8, 8, 8 };
169:                    cm = new ComponentColorModel(cs, nBits, true, false,
170:                            Transparency.TRANSLUCENT, DataBuffer.TYPE_BYTE);
171:                } else {
172:                    throw new IOException("Unsupported options in file");
173:                }
174:
175:                WritableRaster r = cm.createCompatibleWritableRaster(xSize,
176:                        ySize);
177:                BufferedImage bi = new BufferedImage(cm, r, false, null);
178:
179:                int t;
180:                byte image[] = ((DataBufferByte) r.getDataBuffer()).getData();
181:                for (short z = 0; z < zSize; z++) {
182:                    for (int y = ySize - 1; y >= 0; y--) {
183:                        for (short x = 0; x < xSize; x++) {
184:                            t = read();
185:                            if (t == -1)
186:                                throw new IOException("Unexpected EOF");
187:                            image[y * (xSize * zSize) + (x * zSize) + z] = (byte) t;
188:                        }
189:                    }
190:                }
191:
192:                return bi;
193:            } // End of getImage
194:
195:            public RgbFile(InputStream s) {
196:                super (s);
197:            } // End of RgbFile(URL)
198:
199:        } // End of class RgbFile
200:
201:        // End of file RgbFile.java
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.