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

1.1 printing: win9x: drawString displays on the monitor but not on the printer

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.3.0
    • client-libs
    • 2d
    • x86
    • windows_98



      Name: skT45625 Date: 05/10/2000


      java version "1.3.0rc1"
      Java (TM) 2 Runtime Environment, Standard Edition (build 1.3.0rc1-T)
      Java HotSpot (TM) Client VM (build 1.3.0rc1-S, mixed mode)

      I know that there are several reports that are all marked "same as 4203041"
      and "fixed" and "closed" but it's not fixed.

      drawString() displays on the monitor, but the same paint()method when passed a
      printGraphics argument will print the lines but not the text. (example program
      below).

      Note that setColor(Color.black) is invoked and it doesn't help.

      Also note that in 1.2.2 the same problem exists and, in addition, gave my HP
      Deskjet 10.3 driver indigestion--"Printer Driver Problem. Data required by the
      printer driver cannot be found or has been corrupted. Restart Windows and try
      printing again." This makes me think that the problem is not in setting the
      foreground color, as has been thought up to now, but in the font rendering
      itself.


      import corejava.*;
      import java.awt.*;
      import java.awt.event.*;
      import java.awt.List;
      import java.io.*;
      import java.util.*;

      public class PrinterTest extends Frame
      { public static final int MAX_X = 1200;
         public static final int MAX_Y = 1000;
         
         public PrinterTest()
         { super();
         }
                   
         public static void main(String[] args)
         { f = new PrinterTest();
            f.setBackground(Color.white);
            d = Toolkit.getDefaultToolkit().getScreenSize();
            f.setSize(d.width, d.height-10);
            f.setTitle("Printer Test");
            f.show();
            
            open_canvas();
         }
         
         
         public static void open_canvas()
         { cc = new CalendarCanvas(f);
            sp = new ScrollPane(ScrollPane.SCROLLBARS_ALWAYS);
            sp.add(cc);
            sp.setSize(MAX_X, MAX_Y);
            
            display_calendar(f);
       
            PrintJob pjob = f.getToolkit().getPrintJob(f, f.getTitle(), null);
               
            if (pjob != null)
            { Graphics pg = pjob.getGraphics();
               if (pg != null)
                  cc.paint(pg);
               
               pjob.end();
            }
         }
         
         public static void display_calendar(Frame f)
         { f.add(sp, "Center");
            f.pack();
         }
         
       private static Calendar month = null;

       private static Frame f;
       private static CalendarCanvas cc;
       private static ScrollPane sp;
       private static Dimension d;
       
       }
       
      class CalendarCanvas extends Canvas
       { public CalendarCanvas(Frame f)
          { fr = f;
             fr.setSize(PrinterTest.MAX_X, PrinterTest.MAX_Y);
          }
          
          public void paint(Graphics g)
          { int d_of_wk, d_of_mth, dow;
            
             int cur_y, line_y, cur_x, day_width, left_margin, week_height, font_ht;
             int y;
             
             boolean printing;
                 
             PrintJob pj = null;
            
             printing = g instanceof PrintGraphics;
                  
             Insets in = fr.getInsets();
             Dimension d = fr.getSize();
            
             day_width = (PrinterTest.MAX_X-in.left-in.right-100)/ 7;
             left_margin = in.left + 5;
            
             Font f = new Font("Serif", Font.PLAIN, 12);
             g.setFont(f);
             g.setColor(Color.black);
             FontMetrics fm = g.getFontMetrics(f);
             font_ht = fm.getHeight();
            
             cur_x = left_margin;
             cur_y = font_ht + in.top + 5;
            
             if (printing)
             { PrintGraphics pg = (PrintGraphics)g;
                pj = pg.getPrintJob();
             }
             
             g.drawString("Sunday", cur_x, cur_y);
             cur_x += day_width;
             g.drawString("Monday", cur_x, cur_y);
             cur_x += day_width;
             g.drawString("Tuesday", cur_x, cur_y);
             cur_x += day_width;
             g.drawString("Wednesday", cur_x, cur_y);
             cur_x += day_width;
             g.drawString("Thursday", cur_x, cur_y);
             cur_x += day_width;
             g.drawString("Friday", cur_x, cur_y);
             cur_x += day_width;
             g.drawString("Saturday", cur_x, cur_y);
             cur_x = left_margin;
             cur_y += 1;
             g.drawLine(cur_x, cur_y, cur_x + (7 * day_width), cur_y);
             line_y = cur_y;
             cur_y += font_ht;
          
             if (printing)
                g.dispose();
          }
          
          
          private Frame fr;
          private int sch_month;
          private int year;
       }

      This code was extracted from a much larger application which worked entirely
      well under various versions of 1.1.x.
      (Review ID: 102345)
      ======================================================================

            prr Philip Race
            skondamasunw Suresh Kondamareddy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: