선택된 이미지 또는 비디오의 너비와 높이를 증/감 합니다.
Parameters:
Name | Type | Description |
---|---|---|
actionName | String | 'zoomDrawingObject' 이미지 비디오 크기 Zoom in out 크기 조절 api |
isWidth | Boolean | 너비를 증/감 시킬지 여부 |
isHeight | Boolean | 높이를 증/감 시킬지 여부 |
zoom | Number | 증/감할 크기 (단위 px) |
Example:
editor.execCommand('zoomDrawingObject', true, false, 10); // 너비 10px 만큼 증가 editor.execCommand('zoomDrawingObject', false, true, 10); // 높이 10px 만큼 증가 editor.execCommand('zoomDrawingObject', true, true, -10); // 너비와 높이 10px 만큼 감소