-
Bug
-
Resolution: Fixed
-
P3
-
1.2.0, 1.2.1, 1.2.2, 1.3.0
-
008
-
generic, x86
-
generic, windows_98, windows_nt
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2117699 | 1.3.0 | Alex Sultanov | P3 | Resolved | Fixed | kestrel |
JDK-2117698 | 1.2.2_09 | Alex Sultanov | P3 | Resolved | Fixed | 09 |
Name: dbT83986 Date: 03/23/99
The implementation of sun.java2d.PeekGraphics.drawString(...)
differs from that of the basic Graphics2D Object. The issue
is that PeekGraphics.drawString(...) does not verify that the
length of the String is greater than zero. Even if the length
of the String is zero it passes it on to java.awt.font.TextLayout,
like this...
public void drawString(String str, int x, int y) {
drawTextLayout(
new TextLayout(str, getFont(), getFontRenderContext()), x, y);
}
TextLayout then throws an IllegalArgumentException because it
does not accept Strings of length zero. This issue showed up
while printing the contents of a JTable, which had a few empty
cells.
===========================
REVIEW NOTE 3/23/99 - Similar incident 55551; same user
Similarly, after
patching the Java runtime tree I found that my fix worked,
almost.
The same issue is duplicated in
sun.java2d.PathGraphics.drawString(String,int,int). It fails to
check if the length of the String is equal to zero before passing
it on to java.awt.font.TextLayout.
>Workaround
Do this...
public void drawString(String str, int x, int y) {
if (str.length() != 0) {
TextLayout layout = new TextLayout(str, getFont(), getFontRenderContext());
Shape textShape = layout.getOutline(AffineTransform.getTranslateInstance(x, y));
fill(textShape);
}
}
I have compiled an run these changes and everything workes fine.
(Review ID: 55542)
======================================================================
- backported by
-
JDK-2117698 PeekGraphics.drawString differs fatally from basic Graphics2D
-
- Resolved
-
-
JDK-2117699 PeekGraphics.drawString differs fatally from basic Graphics2D
-
- Resolved
-
- duplicates
-
JDK-4405039 Exception occurred during event dispatching
-
- Closed
-
-
JDK-4202282 printing renderer components
-
- Closed
-
-
JDK-4210996 sun.java2d.PathGraphics.drawString can't handle no label checkbox
-
- Closed
-
-
JDK-4262261 Printing JTable with ImageIcon cells throws IllegalArgumentException
-
- Closed
-
(1 duplicates)