- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX library
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 04:37 AM
10-01-2003 04:37 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 04:50 AM
10-01-2003 04:50 AM
Re: HP-UX library
If you only want an existing image to appear as grey scale then you would need support from your printer and it would be an option for the particular printer you had.
If you want to convert images to grey scale in a script and then print it (which may end up being simpler) consider installing ImageMagick
http://imagemagick.sourceforge.net and using the "convert" utility (it's really great!)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:07 AM
10-01-2003 05:07 AM
Re: HP-UX library
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:17 AM
10-01-2003 05:17 AM
Re: HP-UX library
if you want a correct image grey scale, the standard HP-UX spooler is not up to the job, you need some software in between. In the case you describe, that software is Netscape.
It seems you have two choices, either write a simple script to conver each image using "convert" or "gs" and pass the result to the printer.
Alternatively, install the "cups" printer spooler as not only is it a 100 times better than the HP-UX spooler, it also provides an option to "lp" to print in grey scale!!.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:51 AM
10-01-2003 05:51 AM
Re: HP-UX library
The 'convert' tool only seems to work for Audio. We are limited to only using HP products.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 06:10 AM
10-01-2003 06:10 AM
SolutionIf I remember correctly (though I might be confusing this with AIX) HP-Ux 10.20 had an "enscript" command to convert images to postscipt. This is not available on HP-UX 11.*.
There are alternatives for converting an image to postscript such as "ghostscript".
However with "convert" from ImageMagick it is as simple as
"convert image.jpg image.ps"
You might even be able to do the whole operation with something like
"convert image.jpg gray:image.ps" though I've not tried that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 08:49 PM
10-01-2003 08:49 PM
Re: HP-UX library
See www.pdflib.com/products/more/jpeg2ps.html
Thanks for your help