Source Code Cross Referenced for BufferedImageCachableRed.java in  » Graphic-Library » batik » org » apache » batik » ext » awt » image » rendered » 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 » Graphic Library » batik » org.apache.batik.ext.awt.image.rendered 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:
003:           Licensed to the Apache Software Foundation (ASF) under one or more
004:           contributor license agreements.  See the NOTICE file distributed with
005:           this work for additional information regarding copyright ownership.
006:           The ASF licenses this file to You under the Apache License, Version 2.0
007:           (the "License"); you may not use this file except in compliance with
008:           the License.  You may obtain a copy of the License at
009:
010:               http://www.apache.org/licenses/LICENSE-2.0
011:
012:           Unless required by applicable law or agreed to in writing, software
013:           distributed under the License is distributed on an "AS IS" BASIS,
014:           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015:           See the License for the specific language governing permissions and
016:           limitations under the License.
017:
018:         */
019:        package org.apache.batik.ext.awt.image.rendered;
020:
021:        import java.awt.Rectangle;
022:        import java.awt.image.BufferedImage;
023:        import java.awt.image.Raster;
024:        import java.awt.image.WritableRaster;
025:
026:        import org.apache.batik.ext.awt.image.GraphicsUtil;
027:
028:        /**
029:         * This implements CachableRed based on a BufferedImage.
030:         * You can use this to wrap a BufferedImage that you want to
031:         * appear as a CachableRed.
032:         * It essentially ignores the dependency and dirty region methods.
033:         *
034:         * @author <a href="mailto:Thomas.DeWeeese@Kodak.com">Thomas DeWeese</a>
035:         * @version $Id: BufferedImageCachableRed.java 478276 2006-11-22 18:33:37Z dvholten $ */
036:        public class BufferedImageCachableRed extends AbstractRed {
037:            // The bufferedImage that we wrap...
038:            BufferedImage bi;
039:
040:            /**
041:             * Construct an instance of CachableRed around a BufferedImage.
042:             */
043:            public BufferedImageCachableRed(BufferedImage bi) {
044:                super ((CachableRed) null, new Rectangle(bi.getMinX(), bi
045:                        .getMinY(), bi.getWidth(), bi.getHeight()), bi
046:                        .getColorModel(), bi.getSampleModel(), bi.getMinX(), bi
047:                        .getMinY(), null);
048:
049:                this .bi = bi;
050:            }
051:
052:            public BufferedImageCachableRed(BufferedImage bi, int xloc, int yloc) {
053:                super ((CachableRed) null, new Rectangle(xloc, yloc, bi
054:                        .getWidth(), bi.getHeight()), bi.getColorModel(), bi
055:                        .getSampleModel(), xloc, yloc, null);
056:
057:                this .bi = bi;
058:            }
059:
060:            public Rectangle getBounds() {
061:                return new Rectangle(getMinX(), getMinY(), getWidth(),
062:                        getHeight());
063:            }
064:
065:            /**
066:             * fetch the bufferedImage from this node.
067:             */
068:            public BufferedImage getBufferedImage() {
069:                return bi;
070:            }
071:
072:            public Object getProperty(String name) {
073:                return bi.getProperty(name);
074:            }
075:
076:            public String[] getPropertyNames() {
077:                return bi.getPropertyNames();
078:            }
079:
080:            public Raster getTile(int tileX, int tileY) {
081:                return bi.getTile(tileX, tileY);
082:            }
083:
084:            public Raster getData() {
085:                Raster r = bi.getData();
086:                return r.createTranslatedChild(getMinX(), getMinY());
087:            }
088:
089:            public Raster getData(Rectangle rect) {
090:                Rectangle r = (Rectangle) rect.clone();
091:
092:                if (!r.intersects(getBounds()))
093:                    return null;
094:                r = r.intersection(getBounds());
095:                r.translate(-getMinX(), -getMinY());
096:
097:                Raster ret = bi.getData(r);
098:                return ret.createTranslatedChild(ret.getMinX() + getMinX(), ret
099:                        .getMinY()
100:                        + getMinY());
101:            }
102:
103:            public WritableRaster copyData(WritableRaster wr) {
104:                WritableRaster wr2 = wr.createWritableTranslatedChild(wr
105:                        .getMinX()
106:                        - getMinX(), wr.getMinY() - getMinY());
107:
108:                GraphicsUtil.copyData(bi.getRaster(), wr2);
109:
110:                /* This was the original code. This is _bad_ since it causes a
111:                 * multiply and divide of the alpha channel to do the draw
112:                 * operation.  I believe that at some point I switched to
113:                 * drawImage in order to avoid some issues with
114:                 * BufferedImage's copyData implementation but I can't
115:                 * reproduce them now. Anyway I'm now using GraphicsUtil which
116:                 * should generally be as fast if not faster...
117:                 */
118:                /*
119:                  BufferedImage dest;
120:                 dest = new BufferedImage(bi.getColorModel(),
121:                                          wr.createWritableTranslatedChild(0,0),
122:                                          bi.getColorModel().isAlphaPremultiplied(),
123:                                          null);
124:                 java.awt.Graphics2D g2d = dest.createGraphics();
125:                 g2d.drawImage(bi, null, getMinX()-wr.getMinX(),
126:                               getMinY()-wr.getMinY());
127:                 g2d.dispose();
128:                 */
129:                return wr;
130:            }
131:        }
w___w_w___._j__a_va___2s.c___o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.