image marker for rn
    Preparing search index...

    Interface ImageOptions

    Image options for background image or watermark image

    {
    * src: require('./images/logo.png'),
    * scale: 0.5,
    * rotate: 45,
    * alpha: 0.5
    * }
    interface ImageOptions {
        alpha?: number;
        rotate?: number;
        scale?: number;
        src: any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alpha?: number

    transparent of background image 0 - 1

    1
    
    alpha: 0.5
    
    rotate?: number

    rotate image rotate 0-360

    0
    
    rotate: 45
    
    scale?: number

    image scale >0

    1
    
    scale: 1
    
    src: any

    image src, local image

    src: require('./images/logo.png')