This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Buscar en Ayuda

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How to print tiff image using javascript

  • 1 respuesta
  • 1 tiene este problema
  • 2 visitas
  • Última respuesta de guigs

more options

Hi, I am using html button print tiff image. When I click on "Print" button new window gets opened. Below is the code

       var printThis = image tag with src set to image path
       win = window.open();
       self.focus();
       win.document.open();
       win.document.write('<style>body { font-family: Verdana; font-size: 10pt; }</style>');
        win.document.html(printThis);
        win.document.write('');
       win.document.close();
       win.print();
       win.close();

this code do not show any image on new window. If I replace "printThis" as below

         var printThis = '<embed id="pre" access="4" src="' + imgName + '" type="image/tiff" width="100%" />';

It will show me image but, If I print the page then it will do not print anything.

I am using AlternaTIFF to show tiff images. please suggest me solution for this. I am not getting answer on this.

Hi, I am using html button print tiff image. When I click on "Print" button new window gets opened. Below is the code var printThis = image tag with src set to image path win = window.open(); self.focus(); win.document.open(); win.document.write('<html><head><style>body { font-family: Verdana; font-size: 10pt; }</style></head><body>'); win.document.html(printThis); win.document.write('</body></html>'); win.document.close(); win.print(); win.close(); this code do not show any image on new window. If I replace "printThis" as below var printThis = '<embed id="pre" access="4" src="' + imgName + '" type="image/tiff" width="100%" />'; It will show me image but, If I print the page then it will do not print anything. I am using AlternaTIFF to show tiff images. please suggest me solution for this. I am not getting answer on this.

Modificadas por Pritesh.Paul el

Todas las respuestas (1)

more options