@jsfkit/types
    Preparing search index...

    Type Alias GraphicBitmap

    Bitmap graphic / Picture.

    type GraphicBitmap = {
        alpha?: Percentage;
        desc?: string;
        id: string;
        mediaId: string;
        name: string;
        noChangeAspect?: boolean;
        shape?: Shape;
        srcRect?: RelativeRect;
        stretchRect?: RelativeRect;
        text?: TextBody;
        type: "bitmap";
        xfrm?: Xfrm;
    }
    Index

    Properties

    alpha?: Percentage

    Opacity value (0-100, where 100 is fully opaque).

    0
    
    desc?: string

    Optional description or alt text for the bitmap.

    id: string

    Unique identifier for this bitmap object.

    mediaId: string

    Reference to the media/image resource to use.

    name: string

    Display name of the bitmap.

    noChangeAspect?: boolean

    Whether to lock the aspect ratio when resizing.

    shape?: Shape

    Visual styling properties (fill, line, effects, etc.).

    srcRect?: RelativeRect

    Rectangle defining the source crop area of the image (relative coordinates).

    stretchRect?: RelativeRect

    Rectangle defining how the image should be stretched (relative coordinates).

    text?: TextBody

    Optional text content overlaid on the bitmap.

    type: "bitmap"

    Type discriminator for bitmap graphics.

    xfrm?: Xfrm

    2D transformation (position, rotation, scale).