UNPKG
react-pdf-cropper
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A fast, modular React library for cropping, watermarking and downloading regions of PDFs.
react-pdf-cropper
/
src
/
utils
/
handleDownload.js
10 lines
(9 loc)
•
319 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
function
handleDownload
(
croppedImage, filename =
"cropped-image.png"
) {
if
(!croppedImage)
return
;
const
link =
document
.
createElement
(
'a'
); link.
href
= croppedImage; link.
download
= filename;
document
.
body
.
appendChild
(link); link.
click
();
document
.
body
.
removeChild
(link); }