[Tex/LaTex] Exclude images for printing pdf

graphicspdfprinting

I have a document that has images that are very, very dark. As such, they should not be printed when the user goes to print. Somebody I'm working with loves to print, and they use a lot of toner this way.

Is there a way to make an image not print in the hard copy paper view, but show up in the electronic view?

Best Answer

If you are using pdflatex or lualatex, pdftex.def allows you to specify an alternate image to be used for printing:

\includegraphics[print=print.png]{screen.pdf}

This will probably only work with Adobe Reader.

Related Question