Java/JSP: How to add WaterMark on Video
问题 I'm trying to add water mark on image and video. For image i got the solution as below Image water marking code Method static void addWatermarkOnImage(String text, File sourceImageFile, File destImageFile) { try { BufferedImage sourceImage = ImageIO.read(sourceImageFile); Graphics2D g2d = (Graphics2D) sourceImage.getGraphics(); // initializes necessary graphic properties AlphaComposite alphaChannel = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.1f); g2d.setComposite(alphaChannel);