interface ImageBitmap {
    height: number;
    width: number;
    close(): void;
}

属性

方法

属性

height: number

Returns the intrinsic height of the image, in CSS pixels.

width: number

Returns the intrinsic width of the image, in CSS pixels.

方法

  • Releases imageBitmap's underlying bitmap data.

    返回 void