Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Pasek TVP</title>
  6. </head>
  7. <body>
  8. <img id="template" src="template.jpg" width="800" height="426" style="display: none;">
  9. <input type="text" id="caption" value="" placeholder="Tekst">
  10. <button onclick="generateImage()">Generuj</button><br>
  11. <canvas id="canvas" width="800" height="426"></canvas>
  12.  
  13. <script>
  14. function generateImage() {
  15. const c = document.getElementById("canvas");
  16. const ctx = c.getContext("2d");
  17.  
  18. const img = document.getElementById("template");
  19. ctx.drawImage(img,0, 0);
  20. ctx.font = "26px Arial";
  21. ctx.fillStyle="#fff";
  22. const caption = document.getElementById("caption").value.toUpperCase();
  23. ctx.fillText(caption, 165, 382);
  24. }
  25. </script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement