KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > transcoder > image > DefaultFontFamilyTest


1 /*
2
3    Copyright 2002-2003 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    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
17  */

18 package org.apache.batik.transcoder.image;
19
20 import java.util.HashMap JavaDoc;
21 import java.util.Map JavaDoc;
22
23 import org.apache.batik.transcoder.TranscoderInput;
24
25 /**
26  * Test the ImageTranscoder with the KEY_DEFAULT_FONT_FAMILY transcoding hint.
27  *
28  * @author <a HREF="mailto:vincent.hardy@sun.com">Vincent Hardy</a>
29  * @version $Id: DefaultFontFamilyTest.java,v 1.4 2004/08/18 07:17:12 vhardy Exp $
30  */

31 public class DefaultFontFamilyTest extends AbstractImageTranscoderTest {
32
33     /** The URI of the input image. */
34     protected String JavaDoc inputURI;
35
36     /** The URI of the reference image. */
37     protected String JavaDoc refImageURI;
38
39     /** The default font-family to use. */
40     protected String JavaDoc defaultFontFamily;
41
42     /**
43      * Constructs a new <tt>DefaultFontFamilyTest</tt>.
44      *
45      * @param inputURI the URI of the input image
46      * @param the URI of the reference image
47      * @param defaultFontFamily the default font-family to use
48      */

49     public DefaultFontFamilyTest(String JavaDoc inputURI,
50                                  String JavaDoc refImageURI,
51                                  String JavaDoc defaultFontFamily) {
52     this.inputURI = inputURI;
53     this.refImageURI = refImageURI;
54     this.defaultFontFamily = defaultFontFamily;
55     }
56
57     /**
58      * Creates the <tt>TranscoderInput</tt>.
59      */

60     protected TranscoderInput createTranscoderInput() {
61     return new TranscoderInput(resolveURL(inputURI).toString());
62     }
63     
64     /**
65      * Creates a Map that contains additional transcoding hints.
66      */

67     protected Map JavaDoc createTranscodingHints() {
68     Map JavaDoc hints = new HashMap JavaDoc(3);
69     hints.put(ImageTranscoder.KEY_DEFAULT_FONT_FAMILY, defaultFontFamily);
70     return hints;
71     }
72
73     /**
74      * Returns the reference image for this test.
75      */

76     protected byte [] getReferenceImageData() {
77     return createBufferedImageData(resolveURL(refImageURI));
78     }
79 }
80
Popular Tags