-
Bug
-
Resolution: Fixed
-
P2
-
1.2.2_005, 1.3.0
-
02
-
x86
-
windows_98
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2118975 | 1.3.1 | Btplusnull User | P2 | Resolved | Fixed | 1.3.1 |
A configuration that does not work is the following:
Windows 98 / Second Edition / German
Epson Photo Stylus 750 Printer
If you run Print2.class with JDK-1.2.2_005 on this configuration, the printer
dialog comes up, in the print monitor you see that something is sent to the
printer, but nothing is printed out.
---------
import java.awt.*;
import java.util.Properties;
public class Print2
{
public static void main(String[] args)
{
Frame frame = new Frame("preview");
frame.setVisible(true);
System.out.println(System.getProperties());
Properties printProps = new Properties();
printProps.put("awt.print.paperSize", "A4");
//printProps.put("awt.print.orientation", "landscape");
System.out.println("Print2.main: printProps: " + printProps);
PrintJob printJob = null;
Toolkit tk = Toolkit.getDefaultToolkit();
System.out.println("tk: " + tk);
try {
printJob =
Toolkit.getDefaultToolkit().getPrintJob(frame, "title", printProps);
} catch (ClassCastException e) {
System.out.println("caught exception: " + e);
System.exit(1);
}
System.out.println("Print2.main: 1");
System.out.println("Print2.main: printProps: " + printProps);
Graphics g = printJob.getGraphics();
g.setColor(Color.black);
int y = 0;
for (int i = 0; i <= 6; i++) {
int size = 8 + 2 * i;
Font font = new Font("Serif", Font.PLAIN, size);
g.setFont(font);
g.drawString("Serif, PLAIN, " + size, 100, 100 + y);
y += g.getFontMetrics(font).getHeight();
}
g.dispose();
System.out.println("Print2.main: 2");
printJob.end();
System.out.println("Print2.main: 3");
printJob = null;
g = null;
System.exit(0);
}
}
Windows 98 / Second Edition / German
Epson Photo Stylus 750 Printer
If you run Print2.class with JDK-1.2.2_005 on this configuration, the printer
dialog comes up, in the print monitor you see that something is sent to the
printer, but nothing is printed out.
---------
import java.awt.*;
import java.util.Properties;
public class Print2
{
public static void main(String[] args)
{
Frame frame = new Frame("preview");
frame.setVisible(true);
System.out.println(System.getProperties());
Properties printProps = new Properties();
printProps.put("awt.print.paperSize", "A4");
//printProps.put("awt.print.orientation", "landscape");
System.out.println("Print2.main: printProps: " + printProps);
PrintJob printJob = null;
Toolkit tk = Toolkit.getDefaultToolkit();
System.out.println("tk: " + tk);
try {
printJob =
Toolkit.getDefaultToolkit().getPrintJob(frame, "title", printProps);
} catch (ClassCastException e) {
System.out.println("caught exception: " + e);
System.exit(1);
}
System.out.println("Print2.main: 1");
System.out.println("Print2.main: printProps: " + printProps);
Graphics g = printJob.getGraphics();
g.setColor(Color.black);
int y = 0;
for (int i = 0; i <= 6; i++) {
int size = 8 + 2 * i;
Font font = new Font("Serif", Font.PLAIN, size);
g.setFont(font);
g.drawString("Serif, PLAIN, " + size, 100, 100 + y);
y += g.getFontMetrics(font).getHeight();
}
g.dispose();
System.out.println("Print2.main: 2");
printJob.end();
System.out.println("Print2.main: 3");
printJob = null;
g = null;
System.exit(0);
}
}
- backported by
-
JDK-2118975 1.1 printing API: doesn't print with Win98/Epson Photo Stylus 750 printer
-
- Resolved
-
- duplicates
-
JDK-4337102 1.1 printing: win9x: drawString displays on the monitor but not on the printer
-
- Closed
-