blob: 0be2c33c49ebf0f2e565c875d008c335970e56e3 (
plain)
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
|
/*
* $Id$
* Copyright (C) 2001-2002 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.image.analyser;
// Java
import java.io.BufferedInputStream;
import java.io.IOException;
// FOP
import org.apache.fop.image.FopImage;
import org.apache.fop.fo.FOUserAgent;
/**
* ImageReader object for TIFF image type.
*
* @author Pankaj Narula, Michael Lee
* @version $Id$
*/
public class TIFFReader implements ImageReader {
private static final int TIFF_SIG_LENGTH = 8;
/** @see org.apache.fop.image.analyser.ImageReader */
public FopImage.ImageInfo verifySignature(String uri, BufferedInputStream bis,
FOUserAgent ua) throws IOException {
byte[] header = getDefaultHeader(bis);
boolean supported = false;
// first 2 bytes = II (little endian encoding)
if (header[0] == (byte) 0x49 && header[1] == (byte) 0x49) {
// look for '42' in byte 3 and '0' in byte 4
if (header[2] == 42 && header[3] == 0) {
supported = true;
}
}
// first 2 bytes == MM (big endian encoding)
if (header[0] == (byte) 0x4D && header[1] == (byte) 0x4D) {
// look for '42' in byte 4 and '0' in byte 3
if (header[2] == 0 && header[3] == 42) {
supported = true;
}
}
if (supported) {
FopImage.ImageInfo info = getDimension(header);
info.mimeType = getMimeType();
return info;
} else {
return null;
}
}
/**
* Returns the MIME type supported by this implementation.
*
* @return The MIME type
*/
public String getMimeType() {
return "image/tiff";
}
private FopImage.ImageInfo getDimension(byte[] header) {
// currently not setting the width and height
// these are set again by the Jimi image reader.
// I suppose I'll do it one day to be complete. Or
// someone else will.
// Note: bytes 4,5,6,7 contain the byte offset in the stream of the first IFD block
/*
* //png is always big endian
* int byte1 = header[ 16 ] & 0xff;
* int byte2 = header[ 17 ] & 0xff;
* int byte3 = header[ 18 ] & 0xff;
* int byte4 = header[ 19 ] & 0xff;
* long l = ( long ) ( ( byte1 << 24 ) | ( byte2 << 16 ) |
* ( byte3 << 8 ) | byte4 );
* this.width = ( int ) ( l );
* byte1 = header[ 20 ] & 0xff;
* byte2 = header[ 21 ] & 0xff;
* byte3 = header[ 22 ] & 0xff;
* byte4 = header[ 23 ] & 0xff;
* l = ( long ) ( ( byte1 << 24 ) | ( byte2 << 16 ) | ( byte3 << 8 ) |
* byte4 );
* this.height = ( int ) ( l );
*/
FopImage.ImageInfo info = new FopImage.ImageInfo();
info.width = -1;
info.height = -1;
return info;
}
private byte[] getDefaultHeader(BufferedInputStream imageStream)
throws IOException {
byte[] header = new byte[TIFF_SIG_LENGTH];
try {
imageStream.mark(TIFF_SIG_LENGTH + 1);
imageStream.read(header);
imageStream.reset();
} catch (IOException ex) {
try {
imageStream.reset();
} catch (IOException exbis) {
// throw the original exception, not this one
}
throw ex;
}
return header;
}
}
|