wmRemove static method

TransformationData wmRemove({
  1. bool? removeText = false,
  2. String? box1 = "0_0_100_100",
  3. String? box2 = "0_0_0_0",
  4. String? box3 = "0_0_0_0",
  5. String? box4 = "0_0_0_0",
  6. String? box5 = "0_0_0_0",
})

Watermark Removal Plugin

  • removeText : Remove Text (Default: false)

  • removeLogo : Remove Logo (Default: false)

  • box1 : Box 1 (Default: "0_0_100_100")

  • box2 : Box 2 (Default: "0_0_0_0")

  • box3 : Box 3 (Default: "0_0_0_0")

  • box4 : Box 4 (Default: "0_0_0_0")

  • box5 : Box 5 (Default: "0_0_0_0")

Returns TransformationData.

Implementation

static TransformationData wmRemove(
    {bool? removeText = false,
    bool? removeLogo = false,
    String? box1 = "0_0_100_100",
    String? box2 = "0_0_0_0",
    String? box3 = "0_0_0_0",
    String? box4 = "0_0_0_0",
    String? box5 = "0_0_0_0"}) {
  // Call the generated class method
  return WmRemove()
      .remove(removeText, removeLogo, box1, box2, box3, box4, box5);
}