1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
/*
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. The end-user documentation included with the redistribution, if any, must
include the following acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Fop" and "Apache Software Foundation" must not be used to
endorse or promote products derived from this software without prior
written permission. For written permission, please contact
apache@apache.org.
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation and was originally created by
James Tauber <jtauber@jtauber.com>. For more information on the Apache
Software Foundation, please see <http://www.apache.org/>.
*/
//Author: Eric SCHAEFFER
//Description: implement FopImage using AWT classes (for Gif or Jpeg images)
package org.apache.fop.image;
import org.apache.fop.datatypes.ColorSpace;
import org.apache.fop.pdf.PDFColor;
import org.apache.fop.pdf.PDFFilter;
// Java
import java.util.Hashtable;
import java.net.URL;
import java.io.IOException;
import java.awt.image.*;
import java.awt.*;
import java.lang.reflect.Array;
public class GifJpegImage implements FopImage {
int m_width = 0;
int m_height = 0;
URL m_href = null;
ColorSpace m_colorSpace = null;
int m_bitsPerPixel = 0;
byte[] m_bitmaps = null;
int m_bitmapsSize = 0;
boolean m_isTransparent = false;
PDFColor m_transparentColor = null;
// Init the object.
// If href protocol isn't file://, can load the entire image
// and keep it in memory.
// Should cache the input stream, and load data when needed.
public GifJpegImage(URL href) throws FopImageException {
this.m_href = href;
}
protected void getImage() throws FopImageException {
int[] tmpMap = null;
try {
ImageProducer ip = (ImageProducer) this.m_href.getContent();
FopImageConsumer consumer = new FopImageConsumer(ip);
ip.startProduction(consumer);
while (! consumer.isImageReady()) {}
this.m_height = consumer.getHeight();
this.m_width = consumer.getWidth();
try {
tmpMap = consumer.getImage();
} catch (Exception ex) {
throw new FopImageException("Image grabbing interrupted : " + ex.getMessage());
}
ColorModel cm = consumer.getColorModel();
this.m_bitsPerPixel = 8;
// this.m_bitsPerPixel = cm.getPixelSize();
this.m_colorSpace = new ColorSpace(ColorSpace.DEVICE_RGB);
if (cm.hasAlpha()) {
int transparencyType = cm.getTransparency(); // java.awt.Transparency. BITMASK or OPAQUE or TRANSLUCENT
if (transparencyType == java.awt.Transparency.OPAQUE) {
this.m_isTransparent = false;
} else if (transparencyType == java.awt.Transparency.BITMASK) {
if (cm instanceof IndexColorModel) {
this.m_isTransparent = false;
byte[] alphas = new byte[((IndexColorModel) cm).getMapSize()];
byte[] reds = new byte[((IndexColorModel) cm).getMapSize()];
byte[] greens = new byte[((IndexColorModel) cm).getMapSize()];
byte[] blues = new byte[((IndexColorModel) cm).getMapSize()];
((IndexColorModel) cm).getAlphas(alphas);
((IndexColorModel) cm).getReds(reds);
((IndexColorModel) cm).getGreens(greens);
((IndexColorModel) cm).getBlues(blues);
for (int i = 0; i < ((IndexColorModel) cm).getMapSize(); i++) {
if ((alphas[i] & 0xFF) == 0) {
this.m_isTransparent = true;
this.m_transparentColor = new PDFColor((int) (reds[i] & 0xFF), (int) (greens[i] & 0xFF), (int) (blues[i] & 0xFF));
break;
}
}
} else {
/*
this.m_isTransparent = false;
for (int i = 0; i < this.m_width * this.m_height; i++) {
if (cm.getAlpha(tmpMap[i]) == 0) {
this.m_isTransparent = true;
this.m_transparentColor = new PDFColor(cm.getRed(tmpMap[i]), cm.getGreen(tmpMap[i]), cm.getBlue(tmpMap[i]));
break;
}
}
*/
// use special API...
this.m_isTransparent = false;
}
} else {
this.m_isTransparent = false;
}
} else {
this.m_isTransparent = false;
}
} catch (Exception ex) {
throw new FopImageException("Error while loading image " + this.m_href.toString() + " : " + ex.getClass() + " - " + ex.getMessage());
}
// Should take care of the ColorSpace and bitsPerPixel
this.m_bitmaps = new byte[this.m_width * this.m_height * 3];
for (int i = 0; i < this.m_height; i++) {
for (int j = 0; j < this.m_width; j++) {
int p = tmpMap[i * this.m_width + j];
int r = (p >> 16) & 0xFF;
int g = (p >> 8) & 0xFF;
int b = (p ) & 0xFF;
this.m_bitmaps[3 * (i * this.m_width + j)] = (byte) (r & 0xFF);
this.m_bitmaps[3 * (i * this.m_width + j) + 1] = (byte) (g & 0xFF);
this.m_bitmaps[3 * (i * this.m_width + j) + 2] = (byte) (b & 0xFF);
}
}
this.m_bitmapsSize = java.lang.reflect.Array.getLength(this.m_bitmaps);
}
// Get image general properties.
// Methods throw exception because they can retrieve data
// when needed.
// Ressource location
public String getURL() {
return this.m_href.toString();
}
// image size
public int getWidth() throws FopImageException {
if (this.m_width == 0) this.getImage();
return this.m_width;
}
public int getHeight() throws FopImageException {
if (this.m_height == 0) this.getImage();
return this.m_height;
}
// DeviceGray, DeviceRGB, or DeviceCMYK
public ColorSpace getColorSpace() throws FopImageException {
if (this.m_colorSpace == null) this.getImage();
return this.m_colorSpace;
}
// bits per pixel
public int getBitsPerPixel() throws FopImageException {
if (this.m_bitsPerPixel == 0) this.getImage();
return this.m_bitsPerPixel;
}
// For transparent images
public boolean isTransparent() throws FopImageException {
return this.m_isTransparent;
}
public PDFColor getTransparentColor() throws FopImageException {
return this.m_transparentColor;
}
// get the image bytes, and bytes properties
// get uncompressed image bytes
public byte[] getBitmaps() throws FopImageException {
if (this.m_bitmaps == null) this.getImage();
return this.m_bitmaps;
}
// width * (bitsPerPixel / 8) * height, no ?
public int getBitmapsSize() throws FopImageException {
if (this.m_bitmapsSize == 0) this.getImage();
return this.m_bitmapsSize;
}
// get compressed image bytes
// I don't know if we really need it, nor if it
// should be changed...
public byte[] getRessourceBytes() throws FopImageException {
return null;
}
public int getRessourceBytesSize() throws FopImageException {
return 0;
}
// return null if no corresponding PDFFilter
public PDFFilter getPDFFilter() throws FopImageException {
return null;
}
// release memory
public void close() {
/* For the moment, only release the bitmaps (image areas
can share the same FopImage object)
Thus, even if it had been called, other properties
are still available.
*/
// this.m_width = 0;
// this.m_height = 0;
// this.m_href = null;
// this.m_colorSpace = null;
// this.m_bitsPerPixel = 0;
this.m_bitmaps = null;
this.m_bitmapsSize = 0;
// this.m_isTransparent = false;
// this.m_transparentColor = null;
}
}
|