merge static method
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 = "",
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);
}