image_watermark 0.0.1 image_watermark: ^0.0.1 copied to clipboard
A new Flutter project.
image_watermark #
Image watermark is pacakge to add text on image,you can customize the position of watermark and color.
'''dart var watermarkedImg = await image_watermark.addTextWatermark( imgBytes, //image bytes 'watermarkText', //watermark text color: Colors.green, //default : Colors.white dstX: 20, // default : imageWidth/4 dstY: 30); // default : imageWidth/2 '''