收藏
回答

canvas画布,模拟器使用灰色正常,手机里context使用函数无效?

const image = new Image(60, 45); // Using optional size for image
image.onload = drawImageActualSize; // Draw when image has loaded

// Load an image of intrinsic size 300x227 in CSS pixels
image.src = 'rhino.jpg';

function drawImageActualSize() {

  // To use the custom size we'll have to specify the scale parameters
  // using the element's width and height properties - lets draw one
  // on top 
in the corner:
ctx.filter = "grayscale(100%)";
  ctx.drawImage(0, 0, 300,300);}
回答关注问题邀请回答
收藏

1 个回答

  • Demons
    Demons
    2022-12-06

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-12-06
    有用
    回复
登录 后发表内容