Hola
aruizroldan
Yo lo que haría es utilizar Css para que las imágenes no se impriman. Prueba este ejemplo:
Código:
<html>
<head>
<style type="text/css">
@media print {
img {display:none}
}
</style>
</head>
<body>
<p>Esto es texto</p>
<img src="imagen.gif" />
</body>
</html>
Saludos,