Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8285617: Fix java/awt/print/PrinterJob/ImagePrinting/PrintARGBImage.j…
…ava manual test

Reviewed-by: mdoerr
Backport-of: e7c3b9de649d4b28ba16844e042afcf3c89323e5
  • Loading branch information
GoeLin committed Oct 14, 2022
1 parent 243a55e commit bc2d8cc
Showing 1 changed file with 41 additions and 23 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand All @@ -21,42 +21,58 @@
* questions.
*/

/**
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.lang.reflect.InvocationTargetException;

/*
* @test
* @bug 6581756
* @library ../../../regtesthelpers
* @build PassFailJFrame
* @summary Test printing of images which need to have src area clipped
* @run main/manual=yesno PrintARGBImage
* @run main/manual PrintARGBImage
*/

import java.awt.*;
import java.awt.image.*;
import java.awt.print.*;

public class PrintARGBImage implements Printable {

static String[] text = {
"This is a manual test which needs a printer installed",
"If you have no printer installed you CANNOT use this test",
"It runs automatically and sends one page to the default printer",
"It passes if the text shows through the rectangular image",
};
public static void main(String[] args) throws InterruptedException,
InvocationTargetException {
if (PrinterJob.lookupPrintServices().length > 0) {

public static void main( String[] args ) {

for (int i=0;i<text.length;i++) {
System.out.println(text[i]);
}
String instruction =
"This is a manual test which needs a printer installed.\n" +
"If you have no printer installed the test passes automatically.\n" +
"The test runs automatically and sends one page to the default printer.\n" +
"The test passes if the text shows through the rectangular image.\n";

try {
PrinterJob pj = PrinterJob.getPrinterJob();
pj.setPrintable(new PrintARGBImage());
pj.print();
PassFailJFrame passFailJFrame = new PassFailJFrame(instruction, 10);
try {
PrinterJob pj = PrinterJob.getPrinterJob();
pj.setPrintable(new PrintARGBImage());
pj.print();
} catch (Exception ex) {
ex.printStackTrace();
throw new RuntimeException("Exception whilst printing.");
}

passFailJFrame.awaitAndCheck();

} else {
System.out.println("Printer not configured or available."
+ " Test cannot continue.");
PassFailJFrame.forcePass();
}
}

public int print(Graphics g, PageFormat pf, int pageIndex)
throws PrinterException{
throws PrinterException {

if (pageIndex != 0) {
return NO_SUCH_PAGE;
Expand All @@ -77,3 +93,5 @@ public int print(Graphics g, PageFormat pf, int pageIndex)
return PAGE_EXISTS;
}
}


1 comment on commit bc2d8cc

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.