当前位置:网站首页>JS -- image to base code, base to file object
JS -- image to base code, base to file object
2022-07-02 00:20:00 【A walking sheep】
【 Picture turn base code 】
function imgToBase(url){
let img = document.createElement("img")
img.src = url
img.setAttribute("crossOrigin",'Anonymous')
let canvas = document.createElement("canvas");
canvas.width = img.width;
canvas.height = img.height;
let ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0, img.width, img.height);
return canvas.toDataURL();
}
// call
imgToBase("https://img1.baidu.com/it/u=3382370226,1921570240&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=320")

【base Transcoding File object 】
//base-base code
//name- file name
function baseToFile(base, name) {
var arr = base.split(','),
mime = arr[0].match(/:(.*?);/)[1],
bstr = atob(arr[1]),
n = bstr.length,
u8arr = new Uint8Array(n)
while (n--) {
u8arr[n] = bstr.charCodeAt(n)
}
return new File([u8arr], name, {
type: mime,
})
}
// call
baseToFile(base,"fileName.jpg")

边栏推荐
- mysql之B tree 以及 B+tree
- 攻防演练复盘
- [cascade classifier training parameters] training Haar cascades
- 【模板】自适应辛普森积分
- - Oui. Env. Fichier XXX, avec constante, mais non spécifié
- 数据分析方法论与前人经验总结【笔记干货】
- Use the htaccess file to prohibit the script execution permission in the directory
- SQL Server Installation Guide
- Review data desensitization system
- 数据库--SqlServer详解
猜你喜欢
![[QT] solve the problem that QT MSVC 2017 cannot compile](/img/35/e458fd437a0bed4bace2d6d65c9ec8.png)
[QT] solve the problem that QT MSVC 2017 cannot compile

mysql之B tree 以及 B+tree
![Comprehensive usage and case questions of sub query of SQL data analysis [patient sorting]](/img/24/d9a48a0f76cde65421edda04d0f854.png)
Comprehensive usage and case questions of sub query of SQL data analysis [patient sorting]

Heketi record

Kyushu cloud and Intel jointly released the smart campus private cloud framework, enabling new infrastructure for education

B tree and b+tree of MySQL

SQL Server 安裝指南
![Jielizhi, production line assembly link [chapter]](/img/1d/d1736fad33c428e61f450aad512ce0.png)
Jielizhi, production line assembly link [chapter]

Talents come from afar, and Wangcheng district has consolidated the intellectual base of "strengthening the provincial capital"
![[QT] QT cannot find a solution to the compiler using msvc2017](/img/80/a4b17d6cc1ab6fe1366a3a3f43ec2e.png)
[QT] QT cannot find a solution to the compiler using msvc2017
随机推荐
数据库--SqlServer详解
cookie、session、tooken
Shell custom function
Resumption of attack and defense drill
UVM tutorial
Ldr6035 smart Bluetooth audio can be charged and released (5.9.12.15.20v) fast charging and fast releasing device charging
Windows 7 install MySQL error: 1067
I want to ask, which is the better choice for securities companies? I don't understand. Is it safe to open an account online now?
Digital transformation has a long way to go, so how to take the key first step
微信小程序缓存过期时间的相关设置(推荐)
Is it safe for qiniu college to open an account? How to open an account?
Gaussdb (for MySQL):partial result cache, which accelerates the operator by caching intermediate results
[QT] QT cannot find a solution to the compiler using msvc2017
Material design component - use bottomsheet to show extended content (I)
[Qt] résoudre le problème que Qt msvc 2017 ne peut pas Compiler
[opencv450] hog+svm and hog+cascade for pedestrian detection
Three methods of finding inverse numbers
Is the securities account given by qiniu business school safe? Where can I open an account
LDR6035智能蓝牙音响可充可放(5.9.12.15.20V)快充快放设备充电
B tree and b+tree of MySQL