Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html to jpg

Use cloudconvert.com
Comment

how to convert html to jpg

<html>
<body>
<style>
.container {
  margin-top: 10px;
  border: solid 1px black;
}
</style>

<script>
function report() {
  let region = document.querySelector("body"); // whole screen
  html2canvas(region, {
    onrendered: function(canvas) {
      let pngUrl = canvas.toDataURL(); // png in dataURL format
      let img = document.querySelector(".screen");
      img.src = pngUrl; 

      // here you can allow user to set bug-region
      // and send it with 'pngUrl' to server
    },
  });
}
</script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
<div>Write your content here...

<p>After you get the output, right-click it and save it to your device</p></div>
<button onclick="report()">Convert to Jpg</button>
<div class="container">
  <img width="75%" class="screen">
</div>

</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Html :: include react in html 
Html :: rounded scrolling images 
Html :: rowspan 1.5 html 
Html :: best background color in html 
Html :: change the font-size on a label html 
Html :: scroll an element in html with a button 
Html :: image is too big html 
Html :: html add line break in string on screen size 
Html :: html input date range 
Html :: what is radio button in html used for 
Html :: html interview questions github 
Html :: how to include icons in html 
Html :: ubuntu 17.10 vmware 
Html :: openGraph 4 
Html :: <span class="notification-count"0</span 
Html :: read only textview nativescript 
Html :: ng class conditional angular 
Html :: angular variable in html 
Html :: convert html table to csv powershell 
Html :: youtube download video html 
Html :: inline location href 
Html :: url to html converter 
Html :: How do you set a focus keyphrase in html site 
Html :: Elements can be nested inside <a Tag 
Html :: lpluguin de whatsapp para html 
Html :: latex in html einbinden 
Html :: selectize add properties to item from html 
Html :: how to set right to left font in html 
Html :: awesome cheatsheets 
Html :: how add string in all htmls with linux 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =