在我从相机或图库获得的图像上添加图像名称(文本)?

时间:2019-03-12 04:01:36

标签: android android-camera android-image android-gallery

我想在从相机或画廊获得的图像上添加图像名称(文本)吗?我尝试了诸如Canvas或使用XML文件之类的解决方案,但我想要更可行的解决方案

2 个答案:

答案 0 :(得分:1)

这是最好的水印库之一,可帮助您完成任务

https://github.com/huangyz0918/AndroidWM

它们还提供了不同的机制,以在图像上添加水印。

答案 1 :(得分:0)

    Simply take relative layout in XML and add Textview and ImageView .

现在从下面的代码获取图像名称 您可以使用substring方法从路径字符串获取文件的名称。

String path=":/storage/sdcard0/DCIM/Camera/1414240995236.jpg"; 
// it contains your image path...I'm using a temp string...
String filename=path.substring(path.lastIndexOf("/")+1);