merge static method

TransformationData merge({
  1. Mode? mode = Mode.overlay,
  2. String? image = "",
  3. String? transformation = "",
  4. String? background = "00000000",
  5. int? height = 0,
  6. int? width = 0,
  7. int? top = 0,
  8. int? left = 0,
  9. Gravity? gravity = Gravity.center,
  10. Blend? blend = Blend.over,
  11. bool? tile = false,
  12. String? listofbboxes = "",
  13. String? listofpolygons = "",
})

Basic Transformations

@param mode Mode (Default: overlay)

@param image Image (Default: )

@param transformation Transformation (Default: )

@param background Background (Default: 00000000)

@param height Height (Default: 0)

@param width Width (Default: 0)

@param top Top (Default: 0)

@param left Left (Default: 0)

@param gravity Gravity (Default: center)

@param blend Blend (Default: over)

@param tile Tile (Default: false)

@param listofbboxes List of bboxes

@param listofpolygons List of polygons

@return The generated TransformationData.

Implementation

static TransformationData merge(
    {Mode? mode = Mode.overlay,
    String? image = "",
    String? transformation = "",
    String? background = "00000000",
    int? height = 0,
    int? width = 0,
    int? top = 0,
    int? left = 0,
    Gravity? gravity = Gravity.center,
    Blend? blend = Blend.over,
    bool? tile = false,
    String? listofbboxes = "",
    String? listofpolygons = ""}) {
  // Call the generated class method
  return Merge().merge(mode, image, transformation, background, height, width,
      top, left, gravity, blend, tile, listofbboxes, listofpolygons);
}