source: osm/applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/SetLineWidth.java@ 23991

Last change on this file since 23991 was 23991, checked in by extropy, 14 years ago

'Initial pdfimport version'

File size: 2.0 KB
Line 
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17package pdfimport.pdfbox.operators;
18
19import java.awt.BasicStroke;
20import java.io.IOException;
21import java.util.List;
22
23import org.apache.pdfbox.cos.COSBase;
24import org.apache.pdfbox.util.PDFOperator;
25
26import pdfimport.pdfbox.PageDrawer;
27
28/**
29 * Implementation of content stream operator for page drawer.
30 *
31 * @author <a href="mailto:ben@benlitchfield.com">Ben Litchfield</a>
32 * @version $Revision: 1.2 $
33 */
34public class SetLineWidth extends org.apache.pdfbox.util.operator.SetLineWidth
35{
36
37 /**
38 * w Set line width.
39 * @param operator The operator that is being executed.
40 * @param arguments List
41 * @throws IOException If an error occurs while processing the font.
42 */
43 @Override
44 public void process(PDFOperator operator, List<COSBase> arguments) throws IOException
45 {
46 super.process( operator, arguments );
47 float lineWidth = (float)context.getGraphicsState().getLineWidth();
48 if (lineWidth == 0)
49 {
50 lineWidth = 1;
51 }
52 PageDrawer drawer = (PageDrawer)context;
53 BasicStroke stroke = drawer.getStroke();
54 if (stroke == null)
55 {
56 drawer.setStroke( new BasicStroke( lineWidth ) );
57 }
58 else
59 {
60 drawer.setStroke( new BasicStroke(lineWidth, stroke.getEndCap(), stroke.getLineJoin(),
61 stroke.getMiterLimit(), stroke.getDashArray(), stroke.getDashPhase()) );
62 }
63 }
64}
Note: See TracBrowser for help on using the repository browser.