@musallam/firefly-client
    Preparing search index...

    Interface PreciseCompositeRequest

    interface PreciseCompositeRequest {
        background: BackgroundInput;
        blend?: number;
        numVariations?: number;
        object: ObjectInput;
        output?: OutputSpec;
        seeds?: number[];
    }
    Index

    Properties

    background: BackgroundInput

    Background image and fill area mask specifying object placement.

    blend?: number

    Controls blend between harmonized and original object appearance (0.0 = fully harmonized, 1.0 = original preserved). 0 1

    numVariations?: number

    Number of output variations to generate. 1 3

    object: ObjectInput

    Object image to be placed on the background.

    output?: OutputSpec

    Output format specification.

    seeds?: number[]

    Random seeds for each variation. Count must match numVariations if both are provided. Defaults: 1 variation → [333], 2 → [333, 222], 3 → [333, 222, 111]. 1 3