-
java 为图片添加水印 示例
为图片添加水印 【核心代码】 /*** 添加水印* @param imagePath 图片绝对路径* @param watermarkPath 水印图片绝对路径* @param position 水印图片位置* @return 生成水印图片的绝对路径*/public static String addWatermark(String imagePath, String watermarkPath, String position) {logger.info("为图片({})在位置{}添加水印({})", imagePath, position, watermarkPath);if (StringUtils.isNotBlank(imagePath) && StringUtils.isNotBlank(watermarkPath)) {File image = new File(imagePath);File watermark = new File(watermarkPath);Position pos = getPostion(position);if (image.isFile() && image.exists() && watermark.isFile()) {try {BufferedImage bi = ImageIO.read(image);Builder builder = Thumbnails.of(imagePath);BufferedImage watermarkImg = ImageIO.read(watermark);File newWatermark = null;// 原图的宽或高是水印图片宽或高的2倍及以上,则直接打上水印原图;否则缩略水印图片,以原图宽或高的二分之一if (bi.getWidth() / watermarkImg.getWidth()
- 2017-10-13下载
- 积分:1
-
J2ME手机编程规范JSR
J2ME手机编程规范JSR-75文档,PIM部分
- 2022-01-28 20:00:13下载
- 积分:1
-
大富翁游戏的源代码,包括了详细注释(javadoc 文件)。主要特点:背景音乐,可调节游戏速度,自动存储功能。...
大富翁游戏的源代码,包括了详细注释(javadoc 文件)。主要特点:背景音乐,可调节游戏速度,自动存储功能。-Monopoly game"s source code, including a detailed footnote (javadoc). Main features : background music, adjustable game speed, automatic storage functionality.
- 2022-03-01 04:45:15下载
- 积分:1
-
J2ME development under the detailed description and Snake
J2ME开发下的详细说明和Snake
- 2022-08-23 10:28:18下载
- 积分:1
-
calculator for calculating interest rate in a mobile phone
calculator for calculating interest rate in a mobile phone
- 2023-03-17 12:05:04下载
- 积分:1
-
j2meAPI the help documentation, welcome to download.
j2meAPI的帮助文档,欢迎下载使用。-j2meAPI the help documentation, welcome to download.
- 2022-03-07 07:32:36下载
- 积分:1
-
Javapda both the traditional code, I have not seen, but it should be simplified...
Javapda繁体版代码, 这个我也没有看过,不过应该和那个简体的差不多,但还是有区别的-Javapda both the traditional code, I have not seen, but it should be simplified and that the same, but there are differences
- 2023-05-23 06:10:04下载
- 积分:1
-
手机VNC程式, 利用手机远端桌面的源码, 使用J2ME编程
手机VNC程式, 利用手机远端桌面的源码, 使用J2ME编程-phone VNC programs, the use of mobile remote desktop source code, the use J2ME programming
- 2022-03-05 15:31:54下载
- 积分:1
-
Joey is j2me client server application for for mobile platform. Build on top j2m...
Joey is j2me client server application for for mobile platform. Build on top j2mepolish
- 2023-02-03 11:40:04下载
- 积分:1
-
新手研究代码 研究J2me的一些常用编程思想
新手研究代码 研究J2me的一些常用编程思想-New research study J2me code of some commonly used programming ideas
- 2022-01-31 09:38:22下载
- 积分:1