blob: bb66eb11674e9f21002a10654ee9f31c752cbcf6 (
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
|
/*
* $Id$
* Copyright (C) 2001 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;
// Java
import java.net.URL;
import java.net.URLConnection;
import java.io.InputStream;
import java.io.IOException;
// FOP
import org.apache.fop.apps.Driver;
import org.apache.fop.datatypes.ColorSpace;
import org.apache.fop.pdf.PDFColor;
import org.apache.fop.image.analyser.ImageReader;
import org.apache.fop.image.analyser.EPSReader;
import org.xml.sax.InputSource;
import org.xml.sax.XMLReader;
/**
* @see AbstractFopImage
* @see FopImage
*/
public class EPSImage extends AbstractFopImage {
private String docName;
private int[] bbox;
private EPSData epsData = null;
/**
* Initialize docName and bounding box
*/
private void init(URL href) {
bbox = new int[4];
bbox[0] = 0;
bbox[1] = 0;
bbox[2] = 0;
bbox[3] = 0;
docName = href.toString();
}
/**
* Return the name of the eps
*/
public String getDocName() {
return docName;
}
/**
* Return the bounding box
*/
public int[] getBBox() {
return bbox;
}
public EPSImage(URL href, FopImage.ImageInfo imgInfo) {
super(href, imgInfo);
init(href);
if (imgInfo.data instanceof EPSData) {
epsData = (EPSData) imgInfo.data;
bbox = new int[4];
bbox[0] = (int) epsData.bbox[0];
bbox[1] = (int) epsData.bbox[1];
bbox[2] = (int) epsData.bbox[2];
bbox[3] = (int) epsData.bbox[3];
}
}
public byte[] getEPSImage() {
if (epsData.epsFile == null) {
//log.error("ERROR LOADING EXTERNAL EPS");
}
return epsData.epsFile;
}
public static class EPSData {
public long[] bbox;
public boolean isAscii; // True if plain ascii eps file
// offsets if not ascii
public long psStart = 0;
public long psLength = 0;
public long wmfStart = 0;
public long wmfLength = 0;
public long tiffStart = 0;
public long tiffLength = 0;
/** raw eps file */
public byte[] rawEps;
/** eps part */
public byte[] epsFile;
public byte[] preview = null;
}
}
|