admin管理员组文章数量:1345407
There is a program (in asp mvc) on browser that connect to scanner, Scan document and show it as images. enter image description here
Src of image is like below:
data:application/octet-stream;base64,Qk0m2wEAAAAAAD4AAAAoAAAAOAMAAJEEAAABA//////////////////////wAGA/wAYMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAg13xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/
Now, I want convert all of images to one pdf and attach it to a file upload.
Could you help me please?
There is a program (in asp mvc) on browser that connect to scanner, Scan document and show it as images. enter image description here
Src of image is like below:
data:application/octet-stream;base64,Qk0m2wEAAAAAAD4AAAAoAAAAOAMAAJEEAAABA//////////////////////wAGA/wAYMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAg13xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/
Now, I want convert all of images to one pdf and attach it to a file upload.
Could you help me please?
Share Improve this question asked Mar 18, 2019 at 6:40 Farzaneh TalebiFarzaneh Talebi 9354 gold badges26 silver badges48 bronze badges 1- 1 Possible duplicate of Save base64 string as PDF at client side with JavaScript – ellipsis Commented Mar 18, 2019 at 6:41
2 Answers
Reset to default 9Please use the below code to convert Base64 to PDF with the client side JavaScript. Pass the base64 data to the function base64ToArrayBuffer
function base64toPDF(data) {
var bufferArray = base64ToArrayBuffer(data);
var blobStore = new Blob([bufferArray], { type: "application/pdf" });
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveOrOpenBlob(blobStore);
return;
}
var data = window.URL.createObjectURL(blobStore);
var link = document.createElement('a');
document.body.appendChild(link);
link.href = data;
link.download = "file.pdf";
link.click();
window.URL.revokeObjectURL(data);
link.remove();
}
function base64ToArrayBuffer(data) {
var bString = window.atob(data);
var bLength = bString.length;
var bytes = new Uint8Array(bLength);
for (var i = 0; i < bLength; i++) {
var ascii = bString.charCodeAt(i);
bytes[i] = ascii;
}
return bytes;
};
You need some kind of JavaScript PDF library to do this.
jsPDF for instance has a addImage()
method (https://rawgit./MrRio/jsPDF/master/docs/module-addImage.html) which accepts a base64 string as input
本文标签: jqueryHow to convert some base64 string to pdf using javascriptStack Overflow
版权声明:本文标题:jquery - How to convert some base64 string to pdf using javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743699553a2524081.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论