[ https://issues.apache.org/jira/browse/HARMONY-2055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Mark Hindess closed HARMONY-2055.
---------------------------------
Closing as the wont-fix resolution makes sense.
> [class][awt] Graphics2D does wrong translation on BufferedImage
> ---------------------------------------------------------------
>
> Key: HARMONY-2055
> URL: https://issues.apache.org/jira/browse/HARMONY-2055
> Project: Harmony
> Issue Type: Bug
> Components: Classlib, Non-bug differences from RI
> Reporter: Denis Kishenko
> Assignee: Alexey Petrenko
> Attachments: HARMONY-2055-actual.PNG, HARMONY-2055-expected.PNG
>
>
> ============= Test ============
> import java.awt.BasicStroke;
> import java.awt.Color;
> import java.awt.Graphics;
> import java.awt.Graphics2D;
> import java.awt.event.WindowAdapter;
> import java.awt.event.WindowEvent;
> import java.awt.geom.AffineTransform;
> import java.awt.geom.Line2D;
> import java.awt.image.BufferedImage;
> import javax.swing.JFrame;
> public class bug9145 {
> static final boolean SCREEN = false;
>
> public static void main(String[] args) {
> JFrame f = new JFrame("Test") {
>
> void draw(Graphics g) {
> Graphics2D g2 = (Graphics2D)g;
> g.setColor(Color.blue);
> g2.draw(new Line2D.Float(20, 50, 80, 50));
> g.setColor(Color.red);
> g2.setTransform(AffineTransform.getTranslateInstance(5, 10));
> g2.draw(new Line2D.Float(20, 60, 80, 60));
> }
>
> public void paint(Graphics g) {
> if (SCREEN) {
> BufferedImage img = new BufferedImage(600, 400, BufferedImage.TYPE_INT_RGB);
> draw(img.getGraphics());
> g.drawImage(img, 0, 0, null);
> } else {
> draw(g);
> }
> }
> };
> f.addWindowListener(
> new WindowAdapter() {
> public void windowClosing(WindowEvent e) {
> System.exit(0);
> }
> }
> );
> f.setSize(100, 150);
> f.show();
> }
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|