Source Code Cross Referenced for CalGrayColor.java in  » PDF » PDF-Renderer » com » sun » pdfview » colorspace » 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 » PDF » PDF Renderer » com.sun.pdfview.colorspace 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $Id: CalGrayColor.java,v 1.2 2007/12/20 18:33:34 rbair Exp $
003:         *
004:         * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
005:         * Santa Clara, California 95054, U.S.A. All rights reserved.
006:         *
007:         * This library is free software; you can redistribute it and/or
008:         * modify it under the terms of the GNU Lesser General Public
009:         * License as published by the Free Software Foundation; either
010:         * version 2.1 of the License, or (at your option) any later version.
011:         * 
012:         * This library is distributed in the hope that it will be useful,
013:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
014:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
015:         * Lesser General Public License for more details.
016:         * 
017:         * You should have received a copy of the GNU Lesser General Public
018:         * License along with this library; if not, write to the Free Software
019:         * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
020:         */
021:
022:        package com.sun.pdfview.colorspace;
023:
024:        import java.awt.color.ColorSpace;
025:        import java.io.IOException;
026:
027:        import com.sun.pdfview.PDFObject;
028:
029:        /**
030:         * A ColorSpace for calibrated gray
031:         * @author Mike Wessler
032:         */
033:        public class CalGrayColor extends ColorSpace {
034:            float white[] = { 1f, 1f, 1f };
035:            float black[] = { 0, 0, 0 };
036:            float gamma = 1;
037:            static ColorSpace cie = ColorSpace.getInstance(ColorSpace.CS_sRGB);
038:
039:            /**
040:             * Create a new Calibrated Gray color space object, given
041:             * the description in a PDF dictionary.
042:             * @param obj a dictionary that contains an Array of 3 Numbers
043:             * for "WhitePoint" and "BlackPoint", and a Number for "Gamma"
044:             */
045:            public CalGrayColor(PDFObject obj) throws IOException {
046:                // obj is a dictionary that has the following parts:
047:                // WhitePoint [a b c]
048:                // BlackPoint [a b c]
049:                // Gamma a
050:                super (TYPE_GRAY, 1);
051:                PDFObject ary = obj.getDictRef("WhitePoint");
052:                if (ary != null) {
053:                    for (int i = 0; i < 3; i++) {
054:                        white[i] = ary.getAt(i).getFloatValue();
055:                    }
056:                }
057:                ary = obj.getDictRef("BlackPoint");
058:                if (ary != null) {
059:                    for (int i = 0; i < 3; i++) {
060:                        black[i] = ary.getAt(i).getFloatValue();
061:                    }
062:                }
063:                PDFObject g = obj.getDictRef("Gamma");
064:                if (g != null) {
065:                    gamma = g.getFloatValue();
066:                }
067:            }
068:
069:            /**
070:             * Create a new calibrated gray color space object, with the
071:             * default values for black point, white point and gamma
072:             */
073:            public CalGrayColor() {
074:                super (TYPE_GRAY, 1);
075:            }
076:
077:            /**
078:             * get the number of components (1).
079:             */
080:            @Override
081:            public int getNumComponents() {
082:                return 1;
083:            }
084:
085:            /**
086:             * convert from Calibrated Gray to RGB.
087:             * @param comp the gray value (0-1)
088:             * @return the RGB values (0-1)
089:             */
090:            public float[] toRGB(float comp[]) {
091:                if (comp.length == 1) {
092:                    float mul = (float) Math.pow(comp[0], gamma);
093:                    float xyz[] = { white[0] * mul, 0, 0 };
094:                    float rgb[] = cie.fromCIEXYZ(xyz);
095:                    return rgb;
096:                } else {
097:                    return black;
098:                }
099:            }
100:
101:            /**
102:             * convert from RGB to Calibrated Gray.  NOT IMPLEMENTED
103:             */
104:            public float[] fromRGB(float[] rgbvalue) {
105:                return new float[1];
106:            }
107:
108:            /**
109:             * convert from CIEXYZ to Calibrated Gray.  NOT IMPLEMENTED
110:             */
111:            public float[] fromCIEXYZ(float[] colorvalue) {
112:                return new float[1];
113:            }
114:
115:            /**
116:             * get the type of this ColorSpace (TYPE_GRAY)
117:             */
118:            @Override
119:            public int getType() {
120:                return TYPE_GRAY;
121:            }
122:
123:            /**
124:             * convert from Calibrated Gray to CIEXYZ.  NOT IMPLEMENTED
125:             */
126:            public float[] toCIEXYZ(float[] colorvalue) {
127:                return new float[3];
128:            }
129:
130:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.