bgExtend static method
ImageExtender AI Image Extender
boundingBox: Bounding Box (Default: )prompt: Prompt (Default: )negativePrompt: Negative Prompt (Default: )strength: Strength (Default: 0.999)guidanceScale: Guidance Scale (Default: 8)numberOfInferenceSteps: Number of inference steps (Default: 10)colorAdjust: Color Adjust (Default: false)seed: seed (Default: 123) Returns TransformationData.
Implementation
static TransformationData bgExtend(
{String? boundingBox,
String? prompt = "",
String? negativePrompt = "",
double? strength = 0.999,
int? guidanceScale = 8,
int? numberOfInferenceSteps = 10,
bool? colorAdjust = false,
int? seed = 123}) {
return BgExtend().extend(boundingBox, prompt, negativePrompt, strength,
guidanceScale, numberOfInferenceSteps, colorAdjust, seed);
}