当前位置:网站首页>Picture clipping plug-in cropper js
Picture clipping plug-in cropper js
2022-07-02 05:57:00 【Want to eat pineapple crisp】
install
npm install cropperjs
introduce
import 'cropperjs/dist/cropper.css';
import Cropper from 'cropperjs';
Use
const letImg: any = document.querySelector("#cropImg");
(<any>state.cropper) = new Cropper(letImg, {
viewMode: 1,
dragMode: "none",
initialAspectRatio: 1,
aspectRatio: 1,
preview: ".before",
background: false,
autoCropArea: 0.6,
zoomOnWheel: false,
crop: () => {
state.cropperImgBase64 = (<any>state.cropper)
.getCroppedCanvas()
.toDataURL("image/jpeg");
console.log(state.cropperImgBase64);
},
});
Be careful :
- Cannot use local pictures directly
- You can upload preview pictures
边栏推荐
- 1037 Magic Coupon
- JWT工具类
- PHP development and testing WebService (soap) -win
- Zzuli:1065 count the number of numeric characters
- “簡單”的無限魔方
- RGB infinite cube (advanced version)
- 外部中断无法进入,删代码再还原就好......记录这个想不到的bug
- PHP read file (read JSON file, convert to array)
- STC8H8K系列汇编和C51实战——串口发送菜单界面选择不同功能
- [Chongqing Guangdong education] selected reading reference materials of British and American literature of Nanyang Normal University
猜你喜欢
随机推荐
php数组转化为xml
Typora installation (no need to enter serial number)
软件测试答疑篇
1036 Boys vs Girls
Practice C language advanced address book design
[PHP是否安装了 SOAP 扩]对于php实现soap代理的一个常见问题:Class ‘SoapClient‘ not found in PHP的处理方法
Stc8h8k Series Assembly and c51 Real combat - NIXIE TUBE displays ADC, Key Series port reply Key number and ADC value
PHP inner class name is the same as the inner class method name
3D printer G code command: complete list and tutorial
数理统计与机器学习
PHP extensions
How to change the IP address of computer mobile phone simulator
Software testing Q & A
LCD之MIPI协议的一些说明
Redis key value database [advanced]
Some experience of exercise and fitness
3D 打印机 G 代码命令:完整列表和教程
How to write good code - Defensive Programming Guide
mysql事务和隔离级别
CNN可视化技术 -- CAM & Grad-CAM详解及pytorch简洁实现