在nvue页面中使用 gcanvas时, 如何动态改变gcanvas的宽高, 使其可以绘画不同的尺寸的图片.
尝试过:
- 设置动态设置 : style="{width: img_width + 'px', height: img_height + 'px'}"
-
初始化时设置:
this.canvasObj = enable(gcanvas, {
bridge: WeexBridge,width: this.img_width,height:this.img_height
});-
var gcanvas = this.$refs["gcanvess"];
gcanvas.style.width = this.img_width;
gcanvas.style.height = this.img_height;
-
第一种情况虽然可以看到gcanvas尺寸变化了, 但是drawImage是, 失败.
1 个回复
1***@qq.com
请问您知道Gcanvas的尺寸与px之间有什么换算关系吗?