addImageWatermarkUint8List abstract method

Future<Uint8List?> addImageWatermarkUint8List(
  1. Uint8List filePath,
  2. Uint8List watermarkImagePath,
  3. int x,
  4. int y,
  5. int watermarkWidth,
  6. int watermarkHeight,
)

Adds an image watermark to the image at the specified location with the given parameters.

Returns a Uint8List representing the watermarked image.

Implementation

Future<Uint8List?> addImageWatermarkUint8List(
  Uint8List filePath,
  Uint8List watermarkImagePath,
  int x,
  int y,
  int watermarkWidth,
  int watermarkHeight,
);