UNPKG

react-pdf-cropper

Version:

A fast, modular React library for cropping, watermarking and downloading regions of PDFs.

10 lines (9 loc) 319 B
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); }