forked from tabulapdf/tabula-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectExtractorStreamEngine.java
More file actions
268 lines (224 loc) · 8.68 KB
/
ObjectExtractorStreamEngine.java
File metadata and controls
268 lines (224 loc) · 8.68 KB
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
268
package technology.tabula;
import java.awt.Shape;
import java.awt.geom.AffineTransform;
import java.awt.geom.GeneralPath;
import java.awt.geom.Line2D;
import java.awt.geom.PathIterator;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import org.apache.pdfbox.contentstream.PDFGraphicsStreamEngine;
import org.apache.pdfbox.cos.COSName;
import org.apache.pdfbox.pdmodel.PDPage;
import org.apache.pdfbox.pdmodel.common.PDRectangle;
import org.apache.pdfbox.pdmodel.graphics.image.PDImage;
import org.apache.pdfbox.util.Matrix;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
class ObjectExtractorStreamEngine extends PDFGraphicsStreamEngine {
protected List<Ruling> rulings;
private AffineTransform pageTransform;
private boolean debugClippingPaths;
private boolean extractRulingLines = true;
private Logger log;
private int clipWindingRule = -1;
private GeneralPath currentPath = new GeneralPath();
protected ObjectExtractorStreamEngine(PDPage page) {
super(page);
this.log = LoggerFactory.getLogger(ObjectExtractorStreamEngine.class);
this.rulings = new ArrayList<>();
this.pageTransform = null;
// calculate page transform
PDRectangle cb = this.getPage().getCropBox();
int rotation = this.getPage().getRotation();
this.pageTransform = new AffineTransform();
if (Math.abs(rotation) == 90 || Math.abs(rotation) == 270) {
this.pageTransform = AffineTransform.getRotateInstance(rotation * (Math.PI / 180.0), 0, 0);
this.pageTransform.concatenate(AffineTransform.getScaleInstance(1, -1));
} else {
this.pageTransform.concatenate(AffineTransform.getTranslateInstance(0, cb.getHeight()));
this.pageTransform.concatenate(AffineTransform.getScaleInstance(1, -1));
}
this.pageTransform.translate(-cb.getLowerLeftX(), -cb.getLowerLeftY());
}
@Override
public void appendRectangle(Point2D p0, Point2D p1, Point2D p2, Point2D p3) {
currentPath.moveTo((float) p0.getX(), (float) p0.getY());
currentPath.lineTo((float) p1.getX(), (float) p1.getY());
currentPath.lineTo((float) p2.getX(), (float) p2.getY());
currentPath.lineTo((float) p3.getX(), (float) p3.getY());
currentPath.closePath();
}
@Override
public void clip(int windingRule) {
// the clipping path will not be updated until the succeeding painting
// operator is called
clipWindingRule = windingRule;
}
@Override
public void closePath() {
currentPath.closePath();
}
@Override
public void curveTo(float x1, float y1, float x2, float y2, float x3, float y3) {
currentPath.curveTo(x1, y1, x2, y2, x3, y3);
}
@Override
public void drawImage(PDImage arg0) {
// TODO Auto-generated method stub
}
@Override
public void endPath() {
if (clipWindingRule != -1) {
currentPath.setWindingRule(clipWindingRule);
getGraphicsState().intersectClippingPath(currentPath);
clipWindingRule = -1;
}
currentPath.reset();
}
@Override
public void fillAndStrokePath(int arg0) {
strokeOrFillPath(true);
}
@Override
public void fillPath(int arg0) {
strokeOrFillPath(true);
}
@Override
public Point2D getCurrentPoint() {
return currentPath.getCurrentPoint();
}
@Override
public void lineTo(float x, float y) {
currentPath.lineTo(x, y);
}
@Override
public void moveTo(float x, float y) {
currentPath.moveTo(x, y);
}
@Override
public void shadingFill(COSName arg0) {
// TODO Auto-generated method stub
}
@Override
public void strokePath() {
strokeOrFillPath(false);
}
private void strokeOrFillPath(boolean isFill) {
GeneralPath path = this.currentPath;
if (!this.extractRulingLines) {
this.currentPath.reset();
return;
}
PathIterator pi = path.getPathIterator(this.getPageTransform());
float[] c = new float[6];
int currentSegment;
// skip paths whose first operation is not a MOVETO
// or contains operations other than LINETO, MOVETO or CLOSE
if ((pi.currentSegment(c) != PathIterator.SEG_MOVETO)) {
path.reset();
return;
}
pi.next();
while (!pi.isDone()) {
currentSegment = pi.currentSegment(c);
if (currentSegment != PathIterator.SEG_LINETO && currentSegment != PathIterator.SEG_CLOSE
&& currentSegment != PathIterator.SEG_MOVETO) {
path.reset();
return;
}
pi.next();
}
// TODO: how to implement color filter?
// skip the first path operation and save it as the starting position
float[] first = new float[6];
pi = path.getPathIterator(this.getPageTransform());
pi.currentSegment(first);
// last move
Point2D.Float start_pos = new Point2D.Float(Utils.round(first[0], 2), Utils.round(first[1], 2));
Point2D.Float last_move = start_pos;
Point2D.Float end_pos = null;
Line2D.Float line;
PointComparator pc = new PointComparator();
while (!pi.isDone()) {
pi.next();
// This can be the last segment, when pi.isDone, but we need to
// process it
// otherwise us-017.pdf fails the last value.
try {
currentSegment = pi.currentSegment(c);
} catch (IndexOutOfBoundsException ex) {
continue;
}
switch (currentSegment) {
case PathIterator.SEG_LINETO:
end_pos = new Point2D.Float(c[0], c[1]);
if (start_pos == null || end_pos == null) {
break;
}
line = pc.compare(start_pos, end_pos) == -1 ? new Line2D.Float(start_pos, end_pos)
: new Line2D.Float(end_pos, start_pos);
if (line.intersects(this.currentClippingPath())) {
Ruling r = new Ruling(line.getP1(), line.getP2()).intersect(this.currentClippingPath());
if (r.length() > 0.01) {
this.rulings.add(r);
}
}
break;
case PathIterator.SEG_MOVETO:
last_move = new Point2D.Float(c[0], c[1]);
end_pos = last_move;
break;
case PathIterator.SEG_CLOSE:
// according to PathIterator docs:
// "the preceding subpath should be closed by appending a line
// segment
// back to the point corresponding to the most recent
// SEG_MOVETO."
if (start_pos == null || end_pos == null) {
break;
}
line = pc.compare(end_pos, last_move) == -1 ? new Line2D.Float(end_pos, last_move)
: new Line2D.Float(last_move, end_pos);
if (line.intersects(this.currentClippingPath())) {
Ruling r = new Ruling(line.getP1(), line.getP2()).intersect(this.currentClippingPath());
if (r.length() > 0.01) {
this.rulings.add(r);
}
}
break;
}
start_pos = end_pos;
}
path.reset();
}
public AffineTransform getPageTransform() {
return this.pageTransform;
}
public Rectangle2D currentClippingPath() {
Shape clippingPath = this.getGraphicsState().getCurrentClippingPath();
Shape transformedClippingPath = this.getPageTransform().createTransformedShape(clippingPath);
return transformedClippingPath.getBounds2D();
}
class PointComparator implements Comparator<Point2D> {
@Override
public int compare(Point2D o1, Point2D o2) {
float o1X = Utils.round(o1.getX(), 2);
float o1Y = Utils.round(o1.getY(), 2);
float o2X = Utils.round(o2.getX(), 2);
float o2Y = Utils.round(o2.getY(), 2);
if (o1Y > o2Y)
return 1;
if (o1Y < o2Y)
return -1;
if (o1X > o2X)
return 1;
if (o1X < o2X)
return -1;
return 0;
}
}
}