-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
generic
-
generic
Name: gsC80088 Date: 03/11/99
The "s" character is overlapping other characters when printed.
Here is the output from fullversion.
Note this is a partner build.
C:\jclasshome\com\klg\jclass\page>java -fullversion
java full version "JDK-1.2.1-I"
Run this program and print to a printer (hp 4000 in my case).
import java.awt.*;
import java.awt.print.*;
import java.awt.print.PrinterJob;
public class KernBug extends Canvas implements Printable {
Image img;
public KernBug() {
}
public void paint(Graphics g) {
String ff = "Helvetica";
Font f = new Font(ff , Font.PLAIN, 10);
g.setFont(f);
g.drawString("is this an assessment of java", 100, 100);
g.drawString("Here is my sister's silly, sappy sea shore song", 100, 115);
}
public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
if(pi > 0) {
return Printable.NO_SUCH_PAGE;
}
else {
// g.drawImage(img, 100, 100, null);
g.setColor(Color.black);
paint(g);
return Printable.PAGE_EXISTS;
}
}
public static void main(String[] args) {
KernBug PT = new KernBug();
PrinterJob printJob = PrinterJob.getPrinterJob();
PageFormat pageFormat = printJob.defaultPage();
printJob.setPrintable(PT,pageFormat);
Frame f = new Frame("Printing Example");
f.setSize(600, 800);
f.add("Center", PT);
PT.setSize(600, 800);
f.show();
if (printJob.printDialog()) {
try {
printJob.print();
}
catch (Exception e) {
System.out.println(e);
}
}
}
}
(Review ID: 55276)
======================================================================
- duplicates
-
JDK-4271596 Java 2D printing : win32 gdi text only used in portrait orientation
-
- Resolved
-