ThitSarNL
ThitSarNL

Reputation: 720

How to make image with watermark in flutter?

I want to take photo in my flutter app to avoid inputting fake picture. So, I will make my app to Take photo and Save photo with current DateTime and Longitude, Latitude Watermark. Can anybody show me how can I achieve this?

Upvotes: 1

Views: 2215

Answers (1)

TWL
TWL

Reputation: 6646

The most straightforward library would be https://pub.dev/packages/image.

In the examples, it shows:

Create an image, draw some text, save it as a png

// Draw some text using 24pt arial font
drawString(image, arial_24, 0, 0, 'Hello World');

But there should be plenty of other image editors searched at https://pub.dev/flutter/packages?q=edit+image

Upvotes: 1

Related Questions