Uploaded image for project: 'Harmony'
  1. Harmony
  2. HARMONY-5260

[classlib][awt] Graphics.drawLine method works incorretly with in XORMode

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 5.0M4
    • Classlib
    • None
    • Linux
    • Patch Available

    Description

      Graphics.drawLine method works incorretly with in XORMode

      Simple reproducer:

      import java.io.*;
      import java.awt.*;
      import java.awt.image.*;
      import javax.swing.*;

      public class DrawLineTest extends JFrame {
      public static void main(String[] args){
      final DrawLineTest test = new DrawLineTest();
      test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      test.setSize(200, 200);
      test.add(new Panel(){
      public void paint(Graphics g)

      { Composite composite = AlphaComposite.Clear; int w = getWidth(); int h = getHeight(); g.setColor(Color.green); g.fillRect(0, 0, w, h); g.setColor(Color.red); g.setXORMode(Color.blue); g.drawLine(w/4, h - h/4, w - w/4, h/4); }

      });
      test.setVisible(true);
      }
      }

      Attachments

        1. RI.PNG
          2 kB
          Igor V. Stolyarov
        2. Harmony.PNG
          3 kB
          Igor V. Stolyarov
        3. H-5260.patch
          2 kB
          Igor V. Stolyarov

        Activity

          People

            cap Alexey Petrenko
            ivstolyarov Igor V. Stolyarov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: