/**
* 方法描述:<b>给图片增加水印.</b></br>
* 备 注: 在图片上写字符串
* 创 建 人: bo.gaobo</br>
* 创建日期: 2012-09-07</br>
* @param originalUrl 原始图片存储路径
* @param oldImg 原图片
* @param str 增加的字符串
* @param xLocation x坐标
* @param yLocation y坐标
* @param fontColor 颜色
* @param fontSize 字号
* @param typeFace 字体
* @param fileType 文件类型
*/
public static BufferedImage addStringToImg(String originalUrl, BufferedImage oldImg,String str,int xLocation,int yLocation, Color fontColor, int fontSize, String typeFace, String fileType) throws IOException{
FileOutputStream output = new FileOutputStream(originalUrl)
BufferedImage buffImg = oldImg
Graphics2D g = buffImg.createGraphics()
g = buffImg.createGraphics()
g.drawImage(buffImg, null, 0, 0)
g.setColor(fontColor)//设置字体颜色
g.setFont(new Font(typeFace, Font.PLAIN, fontSize))//设置字体和字号
g.drawString(str, xLocation, yLocation)//把字符串放在对应的坐标处
g.dispose()
ImageIO.write(buffImg, fileType, output)//设置文件类型
output.close()
return buffImg
}
方法如下:
设备:华为P30
系统:安卓9
APP:相机
版本:3.0.1
1、首先打开手机,点击相机APP。
2、然后选择页面右上角的三行拓展按键,再点击设置按键。
3、接着在打开的页面中,找到模式设置,点击水印。
4、然后点击滑动机型水印的滚轮。
5、最后设置好自己喜欢的句子,点击保存,添加水印就完成了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)