I have an image with frames and I need to add a watermark effect. How might I do this?
相关问题
- Views base64 encoded blob in HTML with PHP
- How can I create this custom Bottom Navigation on
- How to get the background from multiple images by
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
I found great tutorial on Android Image Processing here.
Thanks to Pete Houston who shares such useful tutorial on basic image processing.
It seems you are looking for a
waterrippleeffect
as this one. Checkout the complete source code. Also check the screenshot how does the effect look like.use framelayout. put two imageviews inside the framelayout and specify the position of the watermark imageview.
For others reference, if you want to add the logo of your application (which is in your drawable folder(s)) on top of image use following method:
If someone is still searching for this, I found the perfect answer here
It adds a watermark to the bottom right portion and scales it according to the source image which was exactly what I was looking for.
And it is well commented which is what is a huge plus!