T.R | Title | User | Personal Name | Date | Lines |
---|
9444.1 | Post your printcap entry | SMURF::LABONTE | | Wed Apr 09 1997 13:45 | 2 |
|
You could also try `lpr -x' to print the graphics file.
|
9444.2 | printcap file given. | XFMV01::RASESH | | Thu Apr 10 1997 08:13 | 32 |
| Well lpr -x didn't work.
Lets me explain you hwo I am printing. In my machine I am having a
netscape from which I am trying to print the home pages, which are
html pages wih gif fiels also.
Fro your info my printcap file is like this :
lp|lp0|0|laser:\
:af=/usr/adm/lpacct:\
:if=/usr/lbin/hplaserof:\
:lf=/usr/adm/lperr:\
:lp=/dev/lp0:\
:mx#0:\
:of=/usr/lbin/hplaserof:\
:pl#66:\
:pw#80:\
:sd=/usr/spool/lpd:\
:xf=/usr/lbin/xf:
In thsi file I have tried other filter (if and of options).All the
three hp laser printers filters are used also I have used LN03 and
other filters also.
Please reply as soon as possible.
Regards,
Rasesh
|
9444.3 | | SMURF::LABONTE | | Thu Apr 10 1997 10:39 | 21 |
| In my response I have assumed that when you say the Netscape web pages are
not printing you're getting garbage data or raw postscript text vs nothing.
Netscape printing works better on a PC than on UNIX.
On a pc the application and the printer driver have established a close software
connection to the point where you could say the driver is integrated into the
application. This enables applications to take a graphic image and send it to
the printer that the driver supports.
On a unix system the printer drivers do not have a close interaction with
the application. In fact there isn't any interaction between the printer
driver and the application. UNIX is more like DOS in that DOS applications
had to have it's own driver for each printer it supported. If the
application didn't directly support that printer type then you couldn't
print.
Using Digital UNIX Netscape you need a postscript printer to print web
pages. You might want to look into ghostscript to see if it has the ability
to convert postscript files to the HP PCL format.
|
9444.4 | is it working on any other unix. | MIPSBX::"[email protected]" | xfmv01::rasesh | Mon Apr 14 1997 08:23 | 14 |
| Hi,
Is it working on any other unix.
Because ghostscript will also work like after down loading it needs
to convert. After that it will print.
but customer want something that will print directly.They have sun
netra ,linux and sco unix, is it possible to get the filter on that.
Regards
Rasesh
[Posted by WWW Notes gateway]
|
9444.5 | | SMURF::LABONTE | | Mon Apr 14 1997 10:52 | 14 |
| From your last response it sounds like ghostscript did provide the postscript
to pcl conversation you require.
If ghostscript is a non-windows utility then it should be possible to
create a input filter script to call ghostscript to convert the file
during the print process. I would expect the filter script to look
similar to:
#!/usr/bin/csh
setenv CMD_ENV bsd
/bin/cat | /path/ghostscript -switches
I am assuming that ghostscript has the ability to input a file from stdin.
|