|
1 | 1 | import React from "react";
|
| 2 | +import { jsPDF } from "jspdf"; |
| 3 | +import html2canvas from "html2canvas"; |
2 | 4 |
|
3 | 5 | const Rezume = ({ Resume }) => {
|
4 | 6 | const { Name, Location, CurrentPosition, Summary } = Resume.About;
|
5 | 7 | const { Email, Website, Phone } = Resume.Contact;
|
6 | 8 | const NameArray = Name.split(" ");
|
| 9 | + //function for download as png |
| 10 | + const downloadAsPNG =()=>{ |
| 11 | + const rezumeContainer = document.getElementById('rezume'); |
| 12 | + html2canvas(rezumeContainer).then(function(canvas) { |
| 13 | + var link = document.createElement("a"); |
| 14 | + document.body.appendChild(link); |
| 15 | + link.download = "rezume.png"; |
| 16 | + link.href = canvas.toDataURL("image/png"); |
| 17 | + link.target = '_blank'; |
| 18 | + link.click(); |
| 19 | + }) |
| 20 | + } |
| 21 | + //function for download as jpeg |
| 22 | + const downloadAsJpeg =()=>{ |
| 23 | + const rezumeContainer = document.getElementById('rezume'); |
| 24 | + html2canvas(rezumeContainer).then(function(canvas) { |
| 25 | + var link = document.createElement("a"); |
| 26 | + document.body.appendChild(link); |
| 27 | + link.download = "rezume.jpeg"; |
| 28 | + link.href = canvas.toDataURL("image/jpeg"); |
| 29 | + link.target = '_blank'; |
| 30 | + link.click(); |
| 31 | + }) |
| 32 | + } |
| 33 | + // function for download as pdf |
| 34 | + const downloadAsPDF = ()=>{ |
| 35 | + const rezumeContainer = document.getElementById('rezume'); |
| 36 | + var w = rezumeContainer.offsetWidth; |
| 37 | + var h = rezumeContainer.offsetHeight; |
| 38 | + html2canvas(rezumeContainer).then((canvas) => { |
| 39 | + const imgData = canvas.toDataURL("image/jpeg",1); |
| 40 | + const pdf = new jsPDF('L','pt',[w,h]); |
| 41 | + pdf.addImage(imgData, "JPEG", 0, 0); |
| 42 | + pdf.save("rezume.pdf"); |
| 43 | + }); |
| 44 | + } |
7 | 45 | return (
|
8 |
| - <div className="rezume-rezume"> |
| 46 | + <> |
| 47 | + <div className="rezume-rezume" id="rezume"> |
9 | 48 | <div className="rezume-rezume-contact">
|
10 | 49 | <p>
|
11 | 50 | Email:{" "}
|
@@ -38,7 +77,12 @@ const Rezume = ({ Resume }) => {
|
38 | 77 | {Summary}
|
39 | 78 | </p>
|
40 | 79 | </div>
|
| 80 | + <div className="py-5 download-btns"> |
| 81 | + <button className="btn btn-secondary m-1" id="downloadAsPngBtn" onClick={()=>{downloadAsPNG()}}>Download as png</button> |
| 82 | + <button className="btn btn-secondary m-1" id="downloadAsJpeg" onClick={()=>{downloadAsJpeg()}}>Download as Jpeg</button> |
| 83 | + <button className="btn btn-secondary m-1" id="downloadAsPDF" onClick={()=>{downloadAsPDF()}}>Download as PDF</button> |
| 84 | + </div> |
| 85 | + </> |
41 | 86 | );
|
42 | 87 | };
|
43 |
| - |
44 | 88 | export default Rezume;
|
0 commit comments