# Image

image对象, 用于 canvas 绘制

# Image 的属性值

名称 类型 必备 默认值 兼容性 描述
src string.ImageURIString -
图片url

# Image 兼容性

Web 微信小程序 Android iOS
4.0 x 4.25 4.25

提示

微信小程序不支持 new Image() 方式创建,需要通过跨平台写法 CanvasContext.createImage(), 示例如下:

uni.createCanvasContextAsync({
  id: 'canvas',
  component: this, // setup模式使用 getCurrentInstance().proxy
  success: (context : CanvasContext) => {
    const renderingContext = context.getContext('2d')!;
    const image = context.createImage();
    image.src = "/static/logo.png";
    image.onload = () => {
      renderingContext.drawImage(image, 0, 0, 100, 100);
    }
  }
})