blob: 2b27945a45fa26f51b038b65e85ca5dde3c02e50 (
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
118
119
120
121
122
123
124
125
126
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id$ */
package org.apache.fop.svg;
import java.awt.Dimension;
import java.awt.geom.AffineTransform;
import java.awt.geom.Dimension2D;
import javax.xml.parsers.SAXParserFactory;
import org.apache.batik.bridge.UserAgentAdapter;
/**
* A simple SVG user agent.
* This is an implementation of the Batik SVG user agent. It ignores any message output sent
* by Batik.
*/
public class SimpleSVGUserAgent extends UserAgentAdapter {
private AffineTransform currentTransform = null;
private float pixelUnitToMillimeter = 0.0f;
/**
* Creates a new user agent.
* @param pixelUnitToMM the pixel to millimeter conversion factor currently in effect
* @param at the current transform
*/
public SimpleSVGUserAgent(float pixelUnitToMM, AffineTransform at) {
pixelUnitToMillimeter = pixelUnitToMM;
currentTransform = at;
}
/**
* Returns a customized the pixel to mm factor.
* @return the pixel unit to millimeter conversion factor
*/
public float getPixelUnitToMillimeter() {
return pixelUnitToMillimeter;
}
/**
* Returns the language settings.
* @return the languages supported
*/
public String getLanguages() {
return "en"; // userLanguages;
}
/**
* Returns the media type for this rendering.
* @return the media for FO documents is "print"
*/
public String getMedia() {
return "print";
}
/**
* Returns the user stylesheet URI.
* @return null if no user style sheet was specified.
*/
public String getUserStyleSheetURI() {
return null; // userStyleSheetURI;
}
/**
* Returns the class name of the XML parser.
* @return the XML parser class name
*/
public String getXMLParserClassName() {
try {
SAXParserFactory factory = SAXParserFactory.newInstance();
return factory.newSAXParser().getXMLReader().getClass().getName();
} catch (Exception e) {
return null;
}
}
/**
* Is the XML parser validating.
* @return true if the XML parser is validating
*/
public boolean isXMLParserValidating() {
return false;
}
/**
* Get the transform of the SVG document.
* @return the transform
*/
public AffineTransform getTransform() {
return currentTransform;
}
/** {@inheritDoc} */
public void setTransform(AffineTransform at) {
this.currentTransform = at;
}
/**
* Get the default viewport size for an SVG document.
* This returns a default value of 100x100.
* @return the default viewport size
*/
public Dimension2D getViewportSize() {
return new Dimension(100, 100);
}
}
|