01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * 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: * @author Igor A. Pyankov
19: * @version $Revision: 1.2 $
20: */package javax.print;
21:
22: import java.io.InputStream;
23:
24: import javax.print.attribute.HashDocAttributeSet;
25: import javax.print.attribute.HashPrintRequestAttributeSet;
26: import javax.print.attribute.PrintRequestAttributeSet;
27: import javax.print.attribute.standard.MediaSizeName;
28:
29: import junit.framework.TestCase;
30:
31: public class PrintJpegTest extends TestCase {
32: public static void main(String[] args) throws Exception {
33: new PrintJpegTest().testPrintJpeg();
34: }
35:
36: public void testPrintJpeg() throws Exception {
37: System.out.println("======== START PrintJpegTest ========");
38:
39: PrintService[] services;
40: PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
41: HashDocAttributeSet daset = new HashDocAttributeSet();
42: DocPrintJob pj;
43: Doc doc;
44:
45: daset.add(MediaSizeName.ISO_A4);
46:
47: DocFlavor df = DocFlavor.INPUT_STREAM.JPEG;
48: InputStream fis = this .getClass().getResourceAsStream(
49: "/Resources/JPEG.jpg");
50: services = PrintServiceLookup.lookupPrintServices(df, aset);
51: TestUtil.checkServices(services);
52:
53: for (int j = 0; j < services.length; j++) {
54: PrintService printer = services[j];
55: if (printer.toString().indexOf("print-to-file") >= 0) {
56: doc = new SimpleDoc(fis, df, daset);
57:
58: pj = printer.createPrintJob();
59: pj.print(doc, aset);
60: System.out.println(fis.toString() + " printed on "
61: + printer.getName());
62: break;
63: }
64: }
65:
66: System.out.println("====== END PrintJpegTest ========");
67: }
68:
69: }
|