image marker for rn
    Preparing search index...

    Interface PositionOptions

    PositionOptions for text watermark and image watermark. When position is set, X and Y are treated as offsets from that anchor.

    positionOptions: {
    X: 10,
    Y: 10,
    }
    // or
    positionOptions: {
    position: Position.topLeft,
    }
    // or
    positionOptions: {
    position: Position.topRight,
    X: 60, // 60px from the right edge
    Y: 60, // 60px from the top edge
    }
    // or
    positionOptions: {
    X: '10%', // relative to the width of the background image
    Y: '10%', // relative to the width of the background image
    }
    interface PositionOptions {
        position?: Position;
        X?: string | number;
        Y?: string | number;
    }
    Index

    Properties

    Properties

    position?: Position
    X?: string | number
    Y?: string | number