KickJava   Java API By Example, From Geeks To Geeks.

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


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.io.IOException JavaDoc;
21 import java.io.InputStream JavaDoc;
22 import java.net.URL JavaDoc;
23
24 import org.apache.batik.transcoder.TranscoderInput;
25
26 /**
27  * Test the ImageTranscoder input with a InputStream.
28  *
29  * @author <a HREF="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann</a>
30  * @version $Id: InputStreamTest.java,v 1.5 2004/08/18 07:17:12 vhardy Exp $
31  */

32 public class InputStreamTest extends AbstractImageTranscoderTest {
33
34     /** The URI of the input image. */
35     protected String JavaDoc inputURI;
36
37     /** The URI of the reference image. */
38     protected String JavaDoc refImageURI;
39
40     /**
41      * Constructs a new <tt>InputStreamTest</tt>.
42      *
43      * @param inputURI the URI of the input image
44      * @param the URI of the reference image
45      */

46     public InputStreamTest(String JavaDoc inputURI, String JavaDoc refImageURI) {
47     this.inputURI = inputURI;
48     this.refImageURI = refImageURI;
49     }
50
51     /**
52      * Creates the <tt>TranscoderInput</tt>.
53      */

54     protected TranscoderInput createTranscoderInput() {
55     try {
56         URL JavaDoc url = resolveURL(inputURI);
57         InputStream JavaDoc istream = url.openStream();
58         TranscoderInput input = new TranscoderInput(istream);
59         input.setURI(url.toString()); // Needed for external resources
60
return input;
61     } catch (IOException JavaDoc ex) {
62             throw new IllegalArgumentException JavaDoc(inputURI);
63     }
64     }
65
66     /**
67      * Returns the reference image for this test.
68      */

69     protected byte [] getReferenceImageData() {
70     return createBufferedImageData(resolveURL(refImageURI));
71     }
72 }
73
Popular Tags