resize
说明
scale 可以对图画视图进行缩放
参数
{object}options视图缩放选项{number}options.sacle缩放比例,比如0.5为缩小50%{x: number, y: number}options.point缩放在画布上的参照位置
返回值
无返回值
用法
js
import { iDraw } from 'idraw';
const app = document.querySelector('#app');
const width = 600;
const height = 400;
const options = {
width,
height,
devicePixelRatio: 2
};
const idraw = new iDraw(app, options);
idraw.setData({
element: [
/* ... */
]
});
idraw.scale({
scale: 0.5,
point: {
// 以画布中心为缩放参照点
x: width / 2,
y: height / 2
}
});