Ask a Question related to Adobe Photoshop 7, CS, CS2 & CS3, Design and Development.

  1. #1

    Default Re: Printing question

    > How do you measure pixels on the paper?
    One by one. It's a tedious procedure. :>D
    > If you have a 250 x 250 pixels document in a resolution of 72 ppi,
    > the print size will be 3,472 x 3,472 inches.
    > If you set the resolution to 150 ppi, you'll get a print size of
    > 1,667 x 1,667 inches, if you remember to turn off 'Resample image'
    > that is. (If 'Resample image' is turned on, the pixel dimensions
    > will change if you change the print size or the resolution).
    Ok that was it. I had forgotten to do that. Thanks very much for the
    memory jog.


    Kathy Guest

  2. Similar Questions and Discussions

    1. Acrobat 6 Printing Question
      We are receiving book interior documents in PDF version 1.6 for printing. Our MacOSX v10.3.9 run Acrobat 6. The v1.6 PDF docs open with a warning....
    2. Printing question OS9
      Going back to OS9 to print with Epson printers. Everything is going ok except that when printing on 8x10 sheet paper it wont let me make the height...
    3. Dumb PDF printing question ...
      I think I know the answer to this but I am not finding many references ... I have a PDF that is set up to be 8.5 x 14 (legal). I am posting it on...
    4. Printing and Imposition question
      Hi, I have several problem with FM Pro 6. 1. how many record I can print in one file (I have document with 137501 record and I can't print more...
    5. Printing Question.
      Hey, I've got a colour printer (Canon S530D), and for photo's only print on 4x6. So, in Photoshop, should I be adjusting the DPI or the image size?...
  3. #2

    Default Printing Question

    I have a shell script that creates a html doc out of a text doc. I
    would like to be able to call the program "mkhtml" via a printer
    called html on the box. ie: lp -dhtml filename.
    I have attempted to modify the printer interface file but can't seem
    to get it to work.

    I need to:

    1) copy the file(to be printed) name into a file named dir
    2) run mkhtml

    any suggesions?

    Thanks
    Brandt
    Brandt Eppler Guest

  4. #3

    Default Re: Printing Question

    "Brandt Eppler" <beppler@comcast.net> wrote in message
    news:4jfrivc2im88sn851v81v1c3g7nj4hn2ul@4ax.com...
    > I have a shell script that creates a html doc out of a text doc. I
    > would like to be able to call the program "mkhtml" via a printer
    > called html on the box. ie: lp -dhtml filename.
    > I have attempted to modify the printer interface file but can't seem
    > to get it to work.
    >
    > I need to:
    >
    > 1) copy the file(to be printed) name into a file named dir
    > 2) run mkhtml
    First suggestion.. Make 'mkhtml' take data from STDIN instead of requring a
    file. Failing that, it should be this simple:

    #!/bin/ksh

    TMPFILE="/tmp/prn.$$"

    /bin/cat - > $TMPFILE

    mkhtml $TMPFILE

    <cat the output of mkhtml to STDOUT>

    rm $TMPFILE

    ....


    Stuart J. Browne Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139