Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4219538

overlapping characters -- kerning error with

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.0
    • client-libs
    • 2d
    • 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)
      ======================================================================

            prr Philip Race
            gstone Greg Stone
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: