The content of this article is about the AlphaComposite mode test of java drawing and merging images. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
package com.hdwang.test; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.awt.image.BufferedImage; import java.util.HashMap; import java.util.Map; /** * Created by hdwang on 2018/10/11. */ public class TestDrawing { public static void main(String[] args) { testComposite(); } /** * 合成测试 */ public static void testComposite() { //创建背景图片(带透明分量的) BufferedImage bg = new BufferedImage(300, 300, BufferedImage.TYPE_INT_ARGB); Graphics2D bgGraphics = (Graphics2D) bg.getGraphics(); bgGraphics.setColor(Color.yellow); //设置颜色 bgGraphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); //边缘抗锯齿 bgGraphics.fillRect(0, 0, bg.getWidth(), bg.getHeight()); //填充矩形 bgGraphics.setColor(Color.BLACK); bgGraphics.setFont(new Font("楷体", Font.ITALIC, 50)); bgGraphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON); //文本抗锯齿 bgGraphics.drawString("背景黄色", 50, 150); //画文本 bgGraphics.dispose(); //创建第二张图片 BufferedImage image = new BufferedImage(300, 300, BufferedImage.TYPE_INT_ARGB); Graphics2D imageGraphics = (Graphics2D) image.getGraphics(); imageGraphics.setColor(Color.GREEN); imageGraphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); imageGraphics.fillRoundRect(0, 0, image.getWidth(), image.getHeight(), image.getWidth(), image.getHeight()); imageGraphics.setColor(Color.BLACK); imageGraphics.setFont(new Font("楷体", Font.ITALIC, 50)); imageGraphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON); imageGraphics.drawString("前景绿色", 50, 200); imageGraphics.dispose(); JFrame jf = new JFrame(); //窗体 JPanel contentPanel = new JPanel(); //内容面板 contentPanel.setBorder(BorderFactory.createLineBorder(Color.blue)); //设置边框 //contentPanel.setLayout(new BorderLayout()); JLabel label = new JLabel(); label.setText("组合模式:"); contentPanel.add(label); JComboBox comboBox = new JComboBox(); comboBox.addItem("默认"); comboBox.addItem("CLEAR"); comboBox.addItem("SRC"); comboBox.addItem("DST"); comboBox.addItem("SRC_OVER"); comboBox.addItem("DST_OVER"); comboBox.addItem("SRC_IN"); comboBox.addItem("DST_IN"); comboBox.addItem("SRC_OUT"); comboBox.addItem("DST_OUT"); comboBox.addItem("SRC_ATOP"); comboBox.addItem("DST_ATOP"); comboBox.addItem("XOR"); contentPanel.add(comboBox); jf.setContentPane(contentPanel); //窗体设置内容面板为jp jf.setBounds(200, 200, 500, 500); jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); jf.setVisible(true); //窗体可见 DrawingPanel drawPanel = new DrawingPanel(); drawPanel.setBounds(0,35,500,440); drawPanel.setPreferredSize(new Dimension(500,440)); drawPanel.setBorder(BorderFactory.createLineBorder(Color.red)); //设置边框 drawPanel.setBg(bg); drawPanel.setImage(image); // drawPanel.setAlphaComposite(AlphaComposite.SrcAtop); contentPanel.add(drawPanel); Map<String,AlphaComposite> compositeMap = new HashMap<>(); compositeMap.put("CLEAR",AlphaComposite.Clear); compositeMap.put("SRC",AlphaComposite.Src); compositeMap.put("DST",AlphaComposite.Dst); compositeMap.put("SRC_OVER",AlphaComposite.SrcOver); compositeMap.put("DST_OVER",AlphaComposite.DstOver); compositeMap.put("SRC_IN",AlphaComposite.SrcIn); compositeMap.put("DST_IN",AlphaComposite.DstIn); compositeMap.put("SRC_OUT",AlphaComposite.SrcOut); compositeMap.put("DST_OUT",AlphaComposite.DstOut); compositeMap.put("SRC_ATOP",AlphaComposite.SrcAtop); compositeMap.put("DST_ATOP",AlphaComposite.DstAtop); compositeMap.put("XOR",AlphaComposite.Xor); //下拉框选中事件 comboBox.addItemListener(new ItemListener() { @Override public void itemStateChanged(ItemEvent e) { if(e.getStateChange() == ItemEvent.SELECTED){ String selected = e.getItem().toString(); System.out.println(selected); drawPanel.setAlphaComposite(compositeMap.get(selected)); drawPanel.repaint(); //重画 } } }); //窗体改变事件 jf.addWindowStateListener(new WindowStateListener() { @Override public void windowStateChanged(WindowEvent e) { System.out.println("window state:"+e.paramString()); } }); } static class DrawingPanel extends JPanel{ BufferedImage bg; BufferedImage image; AlphaComposite alphaComposite; public BufferedImage getBg() { return bg; } public void setBg(BufferedImage bg) { this.bg = bg; } public BufferedImage getImage() { return image; } public void setImage(BufferedImage image) { this.image = image; } public AlphaComposite getAlphaComposite() { return alphaComposite; } public void setAlphaComposite(AlphaComposite alphaComposite) { this.alphaComposite = alphaComposite; } /** * 重写paint方法 * @param g */ @Override public void paint(Graphics g){ //调用的super.paint(g),让父类做一些事前的工作,如刷新屏幕 super.paint(g); //在面板上画画 Graphics2D g2d = (Graphics2D)g; g2d.setComposite(AlphaComposite.Src); g2d.drawImage(bg,100,100,null); //背景图 if(alphaComposite!=null) { g2d.setComposite(alphaComposite); }else{ //默认SrcOver g2d.setComposite(AlphaComposite.SrcOver); } g2d.drawImage(image,100,100,null); //叠加图 //g2d.setColor(Color.GREEN); //g2d.fillRoundRect(100,100,image.getWidth(),image.getHeight(),image.getWidth(),image.getHeight()); //叠加图层 g2d.dispose(); } } }
Java video tutorial and Java tutorial column of the Internet! ! !
The above is the detailed content of java drawing merge image AlphaComposite mode test. For more information, please follow other related articles on the PHP Chinese website!

JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),allowingcodetorunondifferentoperatingsystemswithoutmodification.TheJVMcompilesJavacodeintoplatform-independentbytecode,whichittheninterpretsandexecutesonthespecificOS,abstractingawayOS

Javaispowerfulduetoitsplatformindependence,object-orientednature,richstandardlibrary,performancecapabilities,andstrongsecurityfeatures.1)PlatformindependenceallowsapplicationstorunonanydevicesupportingJava.2)Object-orientedprogrammingpromotesmodulara

The top Java functions include: 1) object-oriented programming, supporting polymorphism, improving code flexibility and maintainability; 2) exception handling mechanism, improving code robustness through try-catch-finally blocks; 3) garbage collection, simplifying memory management; 4) generics, enhancing type safety; 5) ambda expressions and functional programming to make the code more concise and expressive; 6) rich standard libraries, providing optimized data structures and algorithms.

JavaisnotentirelyplatformindependentduetoJVMvariationsandnativecodeintegration,butitlargelyupholdsitsWORApromise.1)JavacompilestobytecoderunbytheJVM,allowingcross-platformexecution.2)However,eachplatformrequiresaspecificJVM,anddifferencesinJVMimpleme

TheJavaVirtualMachine(JVM)isanabstractcomputingmachinecrucialforJavaexecutionasitrunsJavabytecode,enablingthe"writeonce,runanywhere"capability.TheJVM'skeycomponentsinclude:1)ClassLoader,whichloads,links,andinitializesclasses;2)RuntimeDataAr

Javaremainsagoodlanguageduetoitscontinuousevolutionandrobustecosystem.1)Lambdaexpressionsenhancecodereadabilityandenablefunctionalprogramming.2)Streamsallowforefficientdataprocessing,particularlywithlargedatasets.3)ThemodularsystemintroducedinJava9im

Javaisgreatduetoitsplatformindependence,robustOOPsupport,extensivelibraries,andstrongcommunity.1)PlatformindependenceviaJVMallowscodetorunonvariousplatforms.2)OOPfeatureslikeencapsulation,inheritance,andpolymorphismenablemodularandscalablecode.3)Rich

The five major features of Java are polymorphism, Lambda expressions, StreamsAPI, generics and exception handling. 1. Polymorphism allows objects of different classes to be used as objects of common base classes. 2. Lambda expressions make the code more concise, especially suitable for handling collections and streams. 3.StreamsAPI efficiently processes large data sets and supports declarative operations. 4. Generics provide type safety and reusability, and type errors are caught during compilation. 5. Exception handling helps handle errors elegantly and write reliable software.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
