I am using camera preview in my application.It should have a watermark while taking a photo and even after showing the preview also.It should also save the image with that watermark.
I just added Imageview, to show the image while taking photo.
<FrameLayout android:id="@+id/preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/button_layout"
android:layout_below="@+id/middle1">
</FrameLayout>
<ImageView android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button_layout"
android:background="@drawable/fblogo" />
I can able to keep this image while taking photo and showing preview of image.But it is not saving this watermark.
I think it just working to show the image.How can I add this watermark to image even after taking the image.
This imageview I have added is just showing on my surfaceview,but the image is not saving with this watermark.only the image taken from camera is getting saved.
Thanks