<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Printing / compress in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571647#M18348</link>
    <description>My 1st guess would be driver/printer.&lt;BR /&gt;What are the capabilities of the driver?&lt;BR /&gt;</description>
    <pubDate>Mon, 27 Jun 2005 15:11:58 GMT</pubDate>
    <dc:creator>Rick Garland</dc:creator>
    <dc:date>2005-06-27T15:11:58Z</dc:date>
    <item>
      <title>Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571643#M18344</link>
      <description>Hello all,&lt;BR /&gt;can someone test this for me to see if you get the same output as I do.&lt;BR /&gt;&lt;BR /&gt;I want to print a file. the flags should tell it to print landscape and it should be compressed. That is, the output should be small and in the upper left hand corner of the page. Here is the command:&lt;BR /&gt;&lt;BR /&gt;lp -o fp20 -o landscape -o vsi4 -o tl66 'filename'&lt;BR /&gt;&lt;BR /&gt;Can someone tell me how I can get my printer to print compressed?</description>
      <pubDate>Mon, 27 Jun 2005 13:38:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571643#M18344</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2005-06-27T13:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571644#M18345</link>
      <description>I am getting the landscape option but nothing else.&lt;BR /&gt;&lt;BR /&gt;Check the print driver you are using. These options may not be available. From the &lt;A href="http://www.cups.org" target="_blank"&gt;www.cups.org&lt;/A&gt; site you can get the Driver Development Kit and roll your own.&lt;BR /&gt;&lt;BR /&gt;Other option, use enscript. Has many options available with the print drivers it loads.&lt;BR /&gt;&lt;BR /&gt;Other option is mpage. Will print multiple pages on a single sheet. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jun 2005 14:28:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571644#M18345</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-06-27T14:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571645#M18346</link>
      <description>Haven't had to print using these options before on a Linux system so I am interested...&lt;BR /&gt;&lt;BR /&gt;I did the following command and got a landscape, compressed output.&lt;BR /&gt;enscript -PIS3 -G -L60 -r -h /etc/group&lt;BR /&gt;&lt;BR /&gt;The -r is to rotate to landscape&lt;BR /&gt;The -h compresses&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jun 2005 14:47:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571645#M18346</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-06-27T14:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571646#M18347</link>
      <description>Thanks Rick,&lt;BR /&gt;&lt;BR /&gt;The -h wont compress my output. Any idea why? It takes the command but it does not print super compressed.</description>
      <pubDate>Mon, 27 Jun 2005 15:00:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571646#M18347</guid>
      <dc:creator>Nobody's Hero</dc:creator>
      <dc:date>2005-06-27T15:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571647#M18348</link>
      <description>My 1st guess would be driver/printer.&lt;BR /&gt;What are the capabilities of the driver?&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jun 2005 15:11:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571647#M18348</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2005-06-27T15:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571648#M18349</link>
      <description>I work with this escape sequence solution:&lt;BR /&gt;&lt;BR /&gt;This C code send the escape character:&lt;BR /&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;main()&lt;BR /&gt;{&lt;BR /&gt;printf("\033");&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;You have to comppile it (named for example: lo)  and then:&lt;BR /&gt;&lt;BR /&gt;(./lo ; echo  '&amp;amp;l1S' )&lt;BR /&gt;&lt;BR /&gt;This sequence instruct our HP printer to print double sided.&lt;BR /&gt;See your printer documentation, you will find the appropriate sequence for compressed mode and the code for switch it back to normal.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STDIO.H&gt;</description>
      <pubDate>Tue, 28 Jun 2005 09:13:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571648#M18349</guid>
      <dc:creator>Tibor Bajnok</dc:creator>
      <dc:date>2005-06-28T09:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Printing / compress</title>
      <link>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571649#M18350</link>
      <description>Umm, tibor, you do know that 'echo -e "\033&amp;amp;l1S"' will do exactally the same thing, don't you?&lt;BR /&gt;&lt;BR /&gt;You can easily echo octal codes.</description>
      <pubDate>Tue, 28 Jun 2005 09:18:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/printing-compress/m-p/3571649#M18350</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-06-28T09:18:36Z</dc:date>
    </item>
  </channel>
</rss>

