-
Bug
-
Resolution: Fixed
-
P5
-
1.2.0, 1.2.1, 1.2.2
-
02
-
x86
-
windows_nt
When printing a HTML page that contains an applet running in Java Plug-in 1.2, the applet does not print at all. However, if the JDK in Java Plug-in 1.2 is switched to JDK 1.1.x, it prints fine. This problem seems to occur with printing using EmbeddedFrame in AWT in JDK 1.2.
I have tried to use the latest JDK 1.2.1 build, the situation is improved -- at least the bitmap is now shown. However, when I try to do a preview from the browser, the bitmap is displayed in a wrong location which is outside the browser window. If I don't do a preview and just print it out, the bitmap will get shown outside the browser before it prints. The printer output is correct for some applets, but is blank for some other.
Name: skT88420 Date: 08/10/99
Using Netscape 4.5.1; jre 1.2.2 plugin; jdk1.2.2; Windows NT 4.0
The problem can be duplicated using Sun's JDK 1.2.2 demo bar chart demo
(Chart.java). When loaded from HTML invoking it with <APPLET> tags only, it displays
properly and prints properly.
When loaded from HTML using the object/embed tags, it displays properly, BUT does not
print the text drawn with drawString. The shapes, lines etc do print ok.
A simple program that draws one string and one line displays ok,
but does not print the drawString text.
What is happening? Attached is the simple applet. The first HTML displays ok, and the second displays and prints ok!
Pc Wood ###@###.###
import java.awt.Graphics;
import java.awt.Graphics.*;
import java.awt.Graphics2D;
import java.awt.Color;
import java.awt.Font;
import java.io.*;
import java.lang.*;
public class testpr extends java.applet.Applet {
Font titleFont;
public void init() {
titleFont = new java.awt.Font("Courier", Font.BOLD, 12);
}
public void paint(Graphics gc) {
System.out.println("PAINT");
// Graphics2D g2 = (Graphics2D)gc;
gc.setColor(Color.black);
gc.setFont(titleFont);
gc.drawString ("HELLO", 20,20);
gc.drawLine(20,20,50,50);
} // end paint
} // end class
HTML
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.0 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 450 HEIGHT = 300 codebase="http://java.sun.com/products/plugin/1.2/jinstall-12-win32.cab#Version=1,2,0,0">
<PARAM NAME = CODE VALUE = "testpr.class" >
<PARAM NAME = CODEBASE VALUE = "." >
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.2">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.2" java_CODE = "testpr.class" java_CODEBASE = "." WIDTH = 450 HEIGHT = 300 height = "300" width = "450" pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html"><NOEMBED></COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!--"END_CONVERTED_APPLET"-->
==============================
Invoking it with this HTML, both display and printing work:
<html><body>
<applet codebase="." code="testpr.class" width=251 height=125>
</applet>
</body>
</html>
(Review ID: 93337)
======================================================================
I have tried to use the latest JDK 1.2.1 build, the situation is improved -- at least the bitmap is now shown. However, when I try to do a preview from the browser, the bitmap is displayed in a wrong location which is outside the browser window. If I don't do a preview and just print it out, the bitmap will get shown outside the browser before it prints. The printer output is correct for some applets, but is blank for some other.
Name: skT88420 Date: 08/10/99
Using Netscape 4.5.1; jre 1.2.2 plugin; jdk1.2.2; Windows NT 4.0
The problem can be duplicated using Sun's JDK 1.2.2 demo bar chart demo
(Chart.java). When loaded from HTML invoking it with <APPLET> tags only, it displays
properly and prints properly.
When loaded from HTML using the object/embed tags, it displays properly, BUT does not
print the text drawn with drawString. The shapes, lines etc do print ok.
A simple program that draws one string and one line displays ok,
but does not print the drawString text.
What is happening? Attached is the simple applet. The first HTML displays ok, and the second displays and prints ok!
Pc Wood ###@###.###
import java.awt.Graphics;
import java.awt.Graphics.*;
import java.awt.Graphics2D;
import java.awt.Color;
import java.awt.Font;
import java.io.*;
import java.lang.*;
public class testpr extends java.applet.Applet {
Font titleFont;
public void init() {
titleFont = new java.awt.Font("Courier", Font.BOLD, 12);
}
public void paint(Graphics gc) {
System.out.println("PAINT");
// Graphics2D g2 = (Graphics2D)gc;
gc.setColor(Color.black);
gc.setFont(titleFont);
gc.drawString ("HELLO", 20,20);
gc.drawLine(20,20,50,50);
} // end paint
} // end class
HTML
<!--"CONVERTED_APPLET"-->
<!-- CONVERTER VERSION 1.0 -->
<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 450 HEIGHT = 300 codebase="http://java.sun.com/products/plugin/1.2/jinstall-12-win32.cab#Version=1,2,0,0">
<PARAM NAME = CODE VALUE = "testpr.class" >
<PARAM NAME = CODEBASE VALUE = "." >
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.2">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.2" java_CODE = "testpr.class" java_CODEBASE = "." WIDTH = 450 HEIGHT = 300 height = "300" width = "450" pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html"><NOEMBED></COMMENT>
</NOEMBED></EMBED>
</OBJECT>
<!--"END_CONVERTED_APPLET"-->
==============================
Invoking it with this HTML, both display and printing work:
<html><body>
<applet codebase="." code="testpr.class" width=251 height=125>
</applet>
</body>
</html>
(Review ID: 93337)
======================================================================
- duplicates
-
JDK-4210822 Can't print applet from Navigator
-
- Closed
-