Skip to content

Commit d6b8da9

Browse files
committed
removed some packages
1 parent 06b3973 commit d6b8da9

File tree

3 files changed

+201
-2
lines changed

3 files changed

+201
-2
lines changed

package-lock.json

+153
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"homepage": "https://app.rezume.best",
66
"dependencies": {
77
"gh-pages": "^2.1.1",
8+
"html2canvas": "^1.4.1",
9+
"jspdf": "^2.5.1",
810
"node-sass": "^4.14.1",
911
"react": "^16.12.0",
1012
"react-dom": "^16.12.0",

src/components/Rezume/Rezume.js

+46-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,50 @@
11
import React from "react";
2+
import { jsPDF } from "jspdf";
3+
import html2canvas from "html2canvas";
24

35
const Rezume = ({ Resume }) => {
46
const { Name, Location, CurrentPosition, Summary } = Resume.About;
57
const { Email, Website, Phone } = Resume.Contact;
68
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+
}
745
return (
8-
<div className="rezume-rezume">
46+
<>
47+
<div className="rezume-rezume" id="rezume">
948
<div className="rezume-rezume-contact">
1049
<p>
1150
Email:{" "}
@@ -38,7 +77,12 @@ const Rezume = ({ Resume }) => {
3877
{Summary}
3978
</p>
4079
</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+
</>
4186
);
4287
};
43-
4488
export default Rezume;

0 commit comments

Comments
 (0)