KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2
3    Copyright 2001-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_PIXEL_UNIT_TO_MILLIMETER
27  * transcoding hint.
28  *
29  * @author <a HREF="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann</a>
30  * @version $Id: PixelToMMTest.java,v 1.6 2004/08/18 07:17:13 vhardy Exp $ */

31 public class PixelToMMTest 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 pixel to mm factor. */
40     protected Float JavaDoc px2mm;
41
42     /**
43      * Constructs a new <tt>PixelToMMTest</tt>.
44      *
45      * @param inputURI the URI of the input image
46      * @param the URI of the reference image
47      * @param px2mm the pixel to mm conversion factor
48      */

49     public PixelToMMTest(String JavaDoc inputURI,
50              String JavaDoc refImageURI,
51              Float JavaDoc px2mm) {
52         this.inputURI = inputURI;
53         this.refImageURI = refImageURI;
54         this.px2mm = px2mm;
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_PIXEL_UNIT_TO_MILLIMETER, px2mm);
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