[maybe OT] Making posters

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Michele Simionato

    [maybe OT] Making posters

    Perhaps this is a bit off topic, but I haven't had look browsing on the
    net, so I thought I will try my chance here. I am looking for a
    tool taking a postscript file and enlarging it to make a poster.
    For instance I want to convert a picture taking a sheet in a poster
    made by four sheet that I can compose. Any suggestion? A Python
    suggestion would help me to stay on topic ;)


    Michele Simionato
  • Richie Hindle

    #2
    Re: [maybe OT] Making posters


    [Michele][color=blue]
    > Perhaps this is a bit off topic, but I haven't had look browsing on the
    > net, so I thought I will try my chance here. I am looking for a
    > tool taking a postscript file and enlarging it to make a poster.
    > For instance I want to convert a picture taking a sheet in a poster
    > made by four sheet that I can compose. Any suggestion? A Python
    > suggestion would help me to stay on topic ;)[/color]

    You don't mention your platform, but my printer driver (WinXP driver for
    the Samsumg ML-1210 laser printer) will do this itself for any document -
    have you had a good dig though your printer driver options?

    --
    Richie Hindle
    richie@entrian. com


    Comment

    • Daniel Ellison

      #3
      Re: [maybe OT] Making posters

      "Richie Hindle" <richie@entrian .com> wrote in message
      news:mailman.30 0.1080987238.20 120.python-list@python.org ...[color=blue]
      >
      > [Michele][color=green]
      > > Perhaps this is a bit off topic, but I haven't had look browsing on the
      > > net, so I thought I will try my chance here. I am looking for a
      > > tool taking a postscript file and enlarging it to make a poster.
      > > For instance I want to convert a picture taking a sheet in a poster
      > > made by four sheet that I can compose. Any suggestion? A Python
      > > suggestion would help me to stay on topic ;)[/color]
      >
      > You don't mention your platform, but my printer driver (WinXP driver for
      > the Samsumg ML-1210 laser printer) will do this itself for any document -
      > have you had a good dig though your printer driver options?
      >
      > --
      > Richie Hindle
      > richie@entrian. com
      >
      >[/color]

      If you have the raw Postscript file, you can simply add a line near the
      beginning that looks something like this:

      400 400 scale

      which will scale the image by 400%. It's been quite a while since I did
      Postscript programming so the example might not be 100% correct, but a bit
      of research will get you on the right track.

      It's not Python, but it'll work.

      Dan


      Comment

      • Roger Binns

        #4
        Re: [maybe OT] Making posters

        Michele Simionato wrote:[color=blue]
        > Perhaps this is a bit off topic, but I haven't had look browsing on the
        > net, so I thought I will try my chance here. I am looking for a
        > tool taking a postscript file and enlarging it to make a poster.[/color]

        Well, it was on topic enough for PyCon :-)



        Roger


        Comment

        • Paul McGuire

          #5
          Re: [maybe OT] Making posters

          "Michele Simionato" <michele.simion ato@poste.it> wrote in message
          news:95aa1afa.0 404030143.58c32 975@posting.goo gle.com...[color=blue]
          > Perhaps this is a bit off topic, but I haven't had look browsing on the
          > net, so I thought I will try my chance here. I am looking for a
          > tool taking a postscript file and enlarging it to make a poster.
          > For instance I want to convert a picture taking a sheet in a poster
          > made by four sheet that I can compose. Any suggestion? A Python
          > suggestion would help me to stay on topic ;)
          >
          >
          > Michele Simionato[/color]

          Try the Rasterbator (not Python, uses Flash and Adobe):




          -- Paul


          Comment

          • Jacek Generowicz

            #6
            Re: [maybe OT] Making posters

            michele.simiona to@poste.it (Michele Simionato) writes:
            [color=blue]
            > I am looking for a tool taking a postscript file and enlarging it to
            > make a poster.[/color]

            It's called "Postscript ".

            You could start by looking here:


            Comment

            • Michele Simionato

              #7
              Re: [maybe OT] Making posters

              Jacek Generowicz <jacek.generowi cz@cern.ch> wrote in message news:<tyfhdvyzw ay.fsf@pcepsft0 01.cern.ch>...[color=blue]
              > michele.simiona to@poste.it (Michele Simionato) writes:
              >[color=green]
              > > I am looking for a tool taking a postscript file and enlarging it to
              > > make a poster.[/color]
              >
              > It's called "Postscript ".
              >
              > You could start by looking here:
              >
              > http://www.cs.indiana.edu/docproject...ors.html#scale[/color]

              What I do not understand is if the "scale" operator automatically splits
              the graph in many pages if it becomes too large. Anyway, I have found a way
              to get what I want from GraphViz, but I cannot check it since the printer
              died just today! :-(


              Michele Simionato

              Comment

              • Daniel Ellison

                #8
                Re: [maybe OT] Making posters

                "Michele Simionato" <michele.simion ato@poste.it> wrote:[color=blue]
                > What I do not understand is if the "scale" operator automatically splits
                > the graph in many pages if it becomes too large.[/color]

                Probably not. As I said, it's been a few years, but I would suspect the
                "scale" operator simply scales the user coordinate system by the proportions
                given so that everything drawn after that command will be rendered
                accordingly. It's most likely the host application or utility that splits
                the image into multiple pages.

                Dan


                Comment

                • Ralf Muschall

                  #9
                  Re: [maybe OT] Making posters

                  michele.simiona to@poste.it (Michele Simionato) writes:
                  [color=blue]
                  > What I do not understand is if the "scale" operator automatically splits
                  > the graph in many pages if it becomes too large. Anyway, I have found a way[/color]

                  It doesn't. If you really want to do it this way, create many copies
                  of the scaled file and shift the relevant part into the paper using
                  translate.

                  The non-sucking method is to use the command poster(1) which comes
                  with most linux distributions.

                  Ralf
                  --
                  GS d->? s:++>+++ a+ C++++ UL+++ UH++ P++ L++ E+++ W- N++ o-- K- w--- !O M- V-
                  PS+>++ PE Y+>++ PGP+ !t !5 !X !R !tv b+++ DI+++ D? G+ e++++ h+ r? y?

                  Comment

                  • Jon Nicoll

                    #10
                    Re: [maybe OT] Making posters

                    Hi Michelle

                    There was a PostScript program called 'poster' which came with the
                    original PostScript 'Blue Book' of recipes. You prepended this to the
                    beginning of your file and it did the scaling, translating and
                    cropping etc.

                    The code for 'poster', as well as other blue book examples, seems to
                    be available here:



                    Regards
                    Jon N

                    michele.simiona to@poste.it (Michele Simionato) wrote in message news:<95aa1afa. 0404030143.58c3 2975@posting.go ogle.com>...[color=blue]
                    > Perhaps this is a bit off topic, but I haven't had look browsing on the
                    > net, so I thought I will try my chance here. I am looking for a
                    > tool taking a postscript file and enlarging it to make a poster.
                    > For instance I want to convert a picture taking a sheet in a poster
                    > made by four sheet that I can compose. Any suggestion? A Python
                    > suggestion would help me to stay on topic ;)
                    >
                    >
                    > Michele Simionato[/color]

                    Comment

                    • Michele Simionato

                      #11
                      Re: [maybe OT] Making posters

                      Ralf Muschall <ralf@tecont.de > wrote in message news:<84fzbhlfw t.fsf@tecont.de >...[color=blue]
                      > michele.simiona to@poste.it (Michele Simionato) writes:
                      >[color=green]
                      > > What I do not understand is if the "scale" operator automatically splits
                      > > the graph in many pages if it becomes too large. Anyway, I have found a way[/color]
                      >
                      > It doesn't. If you really want to do it this way, create many copies
                      > of the scaled file and shift the relevant part into the paper using
                      > translate.
                      >
                      > The non-sucking method is to use the command poster(1) which comes
                      > with most linux distributions.
                      >
                      > Ralf[/color]

                      Actually I do have "poster" installed and I didn't know!
                      Thanks for the tip, it may turn out useful in the future.

                      Michele

                      Comment

                      Working...