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


001:        /*
002:         * $RCSfile: OrConstOpImage.java,v $
003:         *
004:         * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
005:         *
006:         * Use is subject to license terms.
007:         *
008:         * $Revision: 1.1 $
009:         * $Date: 2005/02/11 04:56:38 $
010:         * $State: Exp $
011:         */
012:        package com.sun.media.jai.opimage;
013:
014:        import javax.media.jai.ColormapOpImage;
015:        import com.sun.media.jai.util.ImageUtil;
016:        import java.awt.Rectangle;
017:        import java.awt.image.DataBuffer;
018:        import java.awt.image.Raster;
019:        import java.awt.image.RenderedImage;
020:        import java.awt.image.WritableRaster;
021:        import javax.media.jai.ImageLayout;
022:        import javax.media.jai.RasterAccessor;
023:        import javax.media.jai.RasterFormatTag;
024:        import java.util.Map;
025:
026:        /**
027:         * An <code>OpImage</code> implementing the "OrConst" operation.
028:         *
029:         * <p>This <code>OpImage</code> logically "ors" the pixels of a rendered
030:         * image with a set of constants, one for each band of the source image.
031:         * The destination pixel values are calculated as:
032:         * <pre>
033:         *     for (int h = 0; h < dstHeight; h++) {
034:         *         for (int w = 0; w < dstWidth; w++) {
035:         *             for (int b = 0; b < dstNumBands; b++) {
036:         *                 if (constants.length < dstNumBands) {
037:         *                     dst[h][w][b] = srcs[h][w][b] | constants[0];
038:         *                 } else {
039:         *                     dst[h][w][b] = srcs[h][w][b] | constants[b];
040:         *                 }
041:         *             }
042:         *         }
043:         *     }
044:         * </pre>
045:         *
046:         * @see javax.media.jai.operator.OrConstDescriptor
047:         * @see OrConstCRIF
048:         *
049:         *
050:         * @since EA2
051:         */
052:        final class OrConstOpImage extends ColormapOpImage {
053:
054:            /** The constants to be ored, one for each band. */
055:            protected int[] constants;
056:
057:            /**
058:             * Constructor.
059:             *
060:             * @param source     The source image.
061:             * @param layout     The destination image layout.
062:             * @param constants  The constants to be ored, stored as reference.
063:             */
064:            public OrConstOpImage(RenderedImage source, Map config,
065:                    ImageLayout layout, int[] constants) {
066:                super (source, layout, config, true);
067:
068:                int numBands = getSampleModel().getNumBands();
069:
070:                if (constants.length < numBands) {
071:                    this .constants = new int[numBands];
072:                    for (int i = 0; i < numBands; i++) {
073:                        this .constants[i] = constants[0];
074:                    }
075:                } else {
076:                    this .constants = (int[]) constants.clone();
077:                }
078:
079:                // Set flag to permit in-place operation.
080:                permitInPlaceOperation();
081:
082:                // Initialize the colormap if necessary.
083:                initializeColormapOperation();
084:            }
085:
086:            /**
087:             * Transform the colormap according to the rescaling parameters.
088:             */
089:            protected void transformColormap(byte[][] colormap) {
090:                for (int b = 0; b < 3; b++) {
091:                    byte[] map = colormap[b];
092:                    int mapSize = map.length;
093:
094:                    int c = b < constants.length ? constants[b] : constants[0];
095:
096:                    for (int i = 0; i < mapSize; i++) {
097:                        map[i] = ImageUtil.clampRoundByte((map[i] & 0xFF) | c);
098:                    }
099:                }
100:            }
101:
102:            /**
103:             * Logically "ors" a constant with the pixel values within a specified
104:             * rectangle.
105:             *
106:             * @param sources   Cobbled sources, guaranteed to provide all the
107:             *                  source data necessary for computing the rectangle.
108:             * @param dest      The tile containing the rectangle to be computed.
109:             * @param destRect  The rectangle within the tile to be computed.
110:             */
111:            protected void computeRect(Raster[] sources, WritableRaster dest,
112:                    Rectangle destRect) {
113:                // Retrieve format tags.
114:                RasterFormatTag[] formatTags = getFormatTags();
115:
116:                Rectangle srcRect = mapDestRect(destRect, 0);
117:
118:                RasterAccessor dst = new RasterAccessor(dest, destRect,
119:                        formatTags[1], getColorModel());
120:                RasterAccessor src = new RasterAccessor(sources[0], srcRect,
121:                        formatTags[0], getSource(0).getColorModel());
122:
123:                switch (dst.getDataType()) {
124:                case DataBuffer.TYPE_BYTE:
125:                    computeRectByte(src, dst);
126:                    break;
127:                case DataBuffer.TYPE_USHORT:
128:                case DataBuffer.TYPE_SHORT:
129:                    computeRectShort(src, dst);
130:                    break;
131:                case DataBuffer.TYPE_INT:
132:                    computeRectInt(src, dst);
133:                    break;
134:                }
135:
136:                /* Do not clamp dst data. */
137:                dst.copyDataToRaster();
138:            }
139:
140:            private void computeRectByte(RasterAccessor src, RasterAccessor dst) {
141:                int dstWidth = dst.getWidth();
142:                int dstHeight = dst.getHeight();
143:                int dstBands = dst.getNumBands();
144:
145:                int dstLineStride = dst.getScanlineStride();
146:                int dstPixelStride = dst.getPixelStride();
147:                int[] dstBandOffsets = dst.getBandOffsets();
148:                byte[][] dstData = dst.getByteDataArrays();
149:
150:                int srcLineStride = src.getScanlineStride();
151:                int srcPixelStride = src.getPixelStride();
152:                int[] srcBandOffsets = src.getBandOffsets();
153:                byte[][] srcData = src.getByteDataArrays();
154:
155:                for (int b = 0; b < dstBands; b++) {
156:                    int c = constants[b];
157:                    byte[] d = dstData[b];
158:                    byte[] s = srcData[b];
159:
160:                    int dstLineOffset = dstBandOffsets[b];
161:                    int srcLineOffset = srcBandOffsets[b];
162:
163:                    for (int h = 0; h < dstHeight; h++) {
164:                        int dstPixelOffset = dstLineOffset;
165:                        int srcPixelOffset = srcLineOffset;
166:
167:                        dstLineOffset += dstLineStride;
168:                        srcLineOffset += srcLineStride;
169:
170:                        for (int w = 0; w < dstWidth; w++) {
171:                            d[dstPixelOffset] = (byte) (s[srcPixelOffset] | c);
172:
173:                            dstPixelOffset += dstPixelStride;
174:                            srcPixelOffset += srcPixelStride;
175:                        }
176:                    }
177:                }
178:            }
179:
180:            private void computeRectShort(RasterAccessor src, RasterAccessor dst) {
181:                int dstWidth = dst.getWidth();
182:                int dstHeight = dst.getHeight();
183:                int dstBands = dst.getNumBands();
184:
185:                int dstLineStride = dst.getScanlineStride();
186:                int dstPixelStride = dst.getPixelStride();
187:                int[] dstBandOffsets = dst.getBandOffsets();
188:                short[][] dstData = dst.getShortDataArrays();
189:
190:                int srcLineStride = src.getScanlineStride();
191:                int srcPixelStride = src.getPixelStride();
192:                int[] srcBandOffsets = src.getBandOffsets();
193:                short[][] srcData = src.getShortDataArrays();
194:
195:                for (int b = 0; b < dstBands; b++) {
196:                    int c = constants[b];
197:                    short[] d = dstData[b];
198:                    short[] s = srcData[b];
199:
200:                    int dstLineOffset = dstBandOffsets[b];
201:                    int srcLineOffset = srcBandOffsets[b];
202:
203:                    for (int h = 0; h < dstHeight; h++) {
204:                        int dstPixelOffset = dstLineOffset;
205:                        int srcPixelOffset = srcLineOffset;
206:
207:                        dstLineOffset += dstLineStride;
208:                        srcLineOffset += srcLineStride;
209:
210:                        for (int w = 0; w < dstWidth; w++) {
211:                            d[dstPixelOffset] = (short) (s[srcPixelOffset] | c);
212:
213:                            dstPixelOffset += dstPixelStride;
214:                            srcPixelOffset += srcPixelStride;
215:                        }
216:                    }
217:                }
218:            }
219:
220:            private void computeRectInt(RasterAccessor src, RasterAccessor dst) {
221:                int dstWidth = dst.getWidth();
222:                int dstHeight = dst.getHeight();
223:                int dstBands = dst.getNumBands();
224:
225:                int dstLineStride = dst.getScanlineStride();
226:                int dstPixelStride = dst.getPixelStride();
227:                int[] dstBandOffsets = dst.getBandOffsets();
228:                int[][] dstData = dst.getIntDataArrays();
229:
230:                int srcLineStride = src.getScanlineStride();
231:                int srcPixelStride = src.getPixelStride();
232:                int[] srcBandOffsets = src.getBandOffsets();
233:                int[][] srcData = src.getIntDataArrays();
234:
235:                for (int b = 0; b < dstBands; b++) {
236:                    int c = constants[b];
237:                    int[] d = dstData[b];
238:                    int[] s = srcData[b];
239:
240:                    int dstLineOffset = dstBandOffsets[b];
241:                    int srcLineOffset = srcBandOffsets[b];
242:
243:                    for (int h = 0; h < dstHeight; h++) {
244:                        int dstPixelOffset = dstLineOffset;
245:                        int srcPixelOffset = srcLineOffset;
246:
247:                        dstLineOffset += dstLineStride;
248:                        srcLineOffset += srcLineStride;
249:
250:                        for (int w = 0; w < dstWidth; w++) {
251:                            d[dstPixelOffset] = s[srcPixelOffset] | c;
252:
253:                            dstPixelOffset += dstPixelStride;
254:                            srcPixelOffset += srcPixelStride;
255:                        }
256:                    }
257:                }
258:            }
259:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.