Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You're using the wrong rule -- don't use AlphaComposite.CLEAR. </p> <p>The AlphaComposite API states this about CLEAR:</p> <blockquote> <p>Both the color and the alpha of the destination are cleared (Porter-Duff Clear rule). Neither the source nor the destination is used as input.</p> </blockquote> <p>So this will make the image disappear. Experiment with other rules. While you were creating your SSCCE, I created mine. See what happens when you comment out the one rule line for the other. For example change this</p> <pre><code>// int rule = AlphaComposite.CLEAR; int rule = AlphaComposite.SRC_OVER; </code></pre> <p>to this:</p> <pre><code>int rule = AlphaComposite.CLEAR; // int rule = AlphaComposite.SRC_OVER; </code></pre> <p>The whole SSCCE: </p> <pre><code>import java.awt.AlphaComposite; import java.awt.BasicStroke; import java.awt.Color; import java.awt.Composite; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.Stroke; import java.awt.image.BufferedImage; import javax.swing.*; public class TestAlphaComposite extends JPanel { private static final int PREF_W = 400; private static final int PREF_H = PREF_W; private static final Stroke BASIC_STROKE = new BasicStroke(6f); BufferedImage backgroundImage; BufferedImage overlayImage; public TestAlphaComposite() { backgroundImage = createBackGroundImage(); overlayImage = createOverlayImage(); } private BufferedImage createBackGroundImage() { BufferedImage img = new BufferedImage(PREF_W, PREF_H, BufferedImage.TYPE_INT_ARGB); Graphics2D g2 = img.createGraphics(); g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2.setStroke(BASIC_STROKE); g2.setColor(Color.blue); int circleCount = 10; for (int i = 0; i &lt; circleCount ; i++) { int x = (i * PREF_W) / (2 * circleCount); int y = x; int w = PREF_W - 2 * x; int h = w; g2.drawOval(x, y, w, h); } g2.dispose(); return img; } private BufferedImage createOverlayImage() { BufferedImage img = new BufferedImage(PREF_W, PREF_H, BufferedImage.TYPE_INT_ARGB); Graphics2D g2 = img.createGraphics(); g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2.setStroke(BASIC_STROKE); g2.setColor(Color.red); int circleCount = 10; for (int i = 0; i &lt; circleCount + 1; i++) { int x1 = (i * PREF_W) / (circleCount); int y1 = 0; int x2 = PREF_W - x1; int y2 = PREF_H; float alpha = (float)i / circleCount; if (alpha &gt; 1f) { alpha = 1f; } // int rule = AlphaComposite.CLEAR; int rule = AlphaComposite.SRC_OVER; Composite comp = AlphaComposite.getInstance(rule , alpha ); g2.setComposite(comp ); g2.drawLine(x1, y1, x2, y2); } g2.dispose(); return img; } @Override public Dimension getPreferredSize() { return new Dimension(PREF_W, PREF_H); } @Override protected void paintComponent(Graphics g) { super.paintComponent(g); if (backgroundImage != null) { g.drawImage(backgroundImage, 0, 0, null); } if (overlayImage != null) { g.drawImage(overlayImage, 0, 0, null); } } private static void createAndShowGui() { JFrame frame = new JFrame("TestAlphaComposite"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().add(new TestAlphaComposite()); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); } public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGui(); } }); } } </code></pre> <p>By the way, your SSCCE isn't a true SSCCE. There's no way that any of us can compile or run that code as it has dependencies that we don't have access to, namely "com.blazingkin.atrox.ScreenManager". If you need our help in the future, you'll want to write better complying sscce's.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload