example2.html 547 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Jimp browser example 2</title>
  5. </head>
  6. <body>
  7. <h1> Demonstrates loading a relative file using Jimp on a WebWorker thread </h1>
  8. <script>
  9. var worker = new Worker("jimp-worker.js");
  10. worker.onmessage = function (e) {
  11. var img = document.createElement("img");
  12. img.setAttribute("src", e.data);
  13. document.body.appendChild(img);
  14. };
  15. worker.postMessage("lenna.png");
  16. </script>
  17. </body>
  18. </html>