addTextWatermark method
Adds a text watermark to the image at the specified location with the given parameters. Use just for IOS or Android. For WEB version you should use addTextWatermarkUint8List()
Returns a String representing the path to the watermarked image.
Implementation
Future<String?> addTextWatermark(
String filePath,
String text,
int x,
int y,
int textSize,
Color color,
Color? backgroundTextColor,
int quality,
int? backgroundTextPaddingTop,
int? backgroundTextPaddingBottom,
int? backgroundTextPaddingLeft,
int? backgroundTextPaddingRight,
ImageFormat imageFormat,
) async {
throw UnimplementedError(
'Not implemented in WEB. You should use addTextWatermarkUint8List()');
}