os.system help

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Reid Nichol

    os.system help

    Hello,
    I have made a program that works wonderfully on OpenBSD but it uses
    os.system to get ghostscript to convert ps to jpeg. But, I wish this
    program to run on Windows as well. Is there any way I can snag where
    the gs executable is on Windows? What it is named? And so forth.

  • Grzegorz Dostatni

    #2
    Re: os.system help


    Cheers.

    In short ghostscript is not installed by default on windows. You can
    install it yourself (http://www.cs.wisc.edu/~ghost/doc/AFPL/get814.htm)
    and install. You could also try to package it in your program somehow (for
    example including the binary in your program directory). I'm not sure if
    it will work properly though.

    I don't think there is anything installed by default on windows that can
    read .ps files.

    You could also try another approach. I am not entirely sure, but I think
    that Python Imaging Library supports writing/reading .ps files.

    Greg



    Advice is what we ask for when we already know the answer but wish we
    didn't.
    -- Erica Jong (How to Save Your Own Life, 1977)


    On Sat, 17 Apr 2004, Reid Nichol wrote:
    [color=blue]
    > Hello,
    > I have made a program that works wonderfully on OpenBSD but it uses
    > os.system to get ghostscript to convert ps to jpeg. But, I wish this
    > program to run on Windows as well. Is there any way I can snag where
    > the gs executable is on Windows? What it is named? And so forth.
    >
    >[/color]

    Comment

    • Reid Nichol

      #3
      Re: os.system help

      Unfortunately PIL only writes .eps files. I was going to get the users
      to install gs but of course it's install directory is variable. I've
      tried using shortcuts but that didn't work.

      Since most of my intended users use windows only...



      Grzegorz Dostatni wrote:[color=blue]
      > Cheers.
      >
      > In short ghostscript is not installed by default on windows. You can
      > install it yourself (http://www.cs.wisc.edu/~ghost/doc/AFPL/get814.htm)
      > and install. You could also try to package it in your program somehow (for
      > example including the binary in your program directory). I'm not sure if
      > it will work properly though.
      >
      > I don't think there is anything installed by default on windows that can
      > read .ps files.
      >
      > You could also try another approach. I am not entirely sure, but I think
      > that Python Imaging Library supports writing/reading .ps files.
      >
      > Greg
      >
      >
      >
      > Advice is what we ask for when we already know the answer but wish we
      > didn't.
      > -- Erica Jong (How to Save Your Own Life, 1977)
      >
      >
      > On Sat, 17 Apr 2004, Reid Nichol wrote:
      >
      >[color=green]
      >>Hello,
      >> I have made a program that works wonderfully on OpenBSD but it uses
      >>os.system to get ghostscript to convert ps to jpeg. But, I wish this
      >>program to run on Windows as well. Is there any way I can snag where
      >>the gs executable is on Windows? What it is named? And so forth.
      >>
      >>[/color]
      >
      >[/color]

      Comment

      • Jeremy Sanders

        #4
        Re: os.system help

        On Sat, 17 Apr 2004 23:32:01 -0500, Reid Nichol wrote:
        [color=blue]
        > Unfortunately PIL only writes .eps files. I was going to get the users
        > to install gs but of course it's install directory is variable. I've
        > tried using shortcuts but that didn't work.
        >
        > Since most of my intended users use windows only...[/color]

        I'm not familiar with GS on Windows, but it may be worth searching the
        registry to see whether the install path is written there.

        Jeremy

        Comment

        • Reid Nichol

          #5
          Re: os.system help

          The registry contains certain data but not *exactly* the data I need. I
          could construct from that but according to the docs it's quite new so
          I'd rather not use it.

          I know there has to be a way to tell if I'm on a certain platorm.
          Something like:
          if __win32__:
          print 'on windows'

          But, I can't find any docs on that. I'm probably looking in the wrong
          place, so, could someone point me in the right direction or just give me
          that if statment.

          Thanks


          Jeremy Sanders wrote:[color=blue]
          > On Sat, 17 Apr 2004 23:32:01 -0500, Reid Nichol wrote:
          >
          >[color=green]
          >>Unfortunate ly PIL only writes .eps files. I was going to get the users
          >>to install gs but of course it's install directory is variable. I've
          >>tried using shortcuts but that didn't work.
          >>
          >>Since most of my intended users use windows only...[/color]
          >
          >
          > I'm not familiar with GS on Windows, but it may be worth searching the
          > registry to see whether the install path is written there.
          >
          > Jeremy
          >[/color]

          Comment

          • Fredrik Lundh

            #6
            Re: os.system help

            Reid Nichol wrote
            [color=blue]
            > I know there has to be a way to tell if I'm on a certain platorm.
            > Something like:
            > if __win32__:
            > print 'on windows'
            >
            > But, I can't find any docs on that. I'm probably looking in the wrong
            > place, so, could someone point me in the right direction or just give me
            > that if statment.[/color]

            if sys.platform == "win32":
            print "on windows"

            </F>




            Comment

            • Dennis Lee Bieber

              #7
              Re: os.system help

              On Sun, 18 Apr 2004 13:26:18 -0500, Reid Nichol <rnichol_rrc@ya hoo.com>
              declaimed the following in comp.lang.pytho n:
              [color=blue]
              > The registry contains certain data but not *exactly* the data I need. I
              > could construct from that but according to the docs it's quite new so
              > I'd rather not use it.
              >
              > I know there has to be a way to tell if I'm on a certain platorm.
              > Something like:
              > if __win32__:
              > print 'on windows'[/color]

              import sys
              if sys.platform == "win32":
              print "On windows"

              --[color=blue]
              > =============== =============== =============== =============== == <
              > wlfraed@ix.netc om.com | Wulfraed Dennis Lee Bieber KD6MOG <
              > wulfraed@dm.net | Bestiaria Support Staff <
              > =============== =============== =============== =============== == <
              > Home Page: <http://www.dm.net/~wulfraed/> <
              > Overflow Page: <http://wlfraed.home.ne tcom.com/> <[/color]

              Comment

              • bobb

                #8
                Re: os.system help


                "Reid Nichol" <rnichol_rrc@ya hoo.com> wrote in message
                news:78lgc.3445 $AL1.7744@news1 .mts.net...[color=blue]
                > Hello,
                > I have made a program that works wonderfully on OpenBSD but it uses
                > os.system to get ghostscript to convert ps to jpeg. But, I wish this
                > program to run on Windows as well. Is there any way I can snag where
                > the gs executable is on Windows? What it is named? And so forth.
                >[/color]
                I test my gs things through cygwin on my windows box.
                hth

                bobb



                Comment

                • JanC

                  #9
                  Re: os.system help

                  Reid Nichol <rnichol_rrc@ya hoo.com> schreef:
                  [color=blue]
                  > The registry contains certain data but not *exactly* the data I need. I
                  > could construct from that but according to the docs it's quite new so
                  > I'd rather not use it.[/color]

                  I did this 2 years ago (using a NSIS 1.x install script to change a batch
                  file) and it worked for everyone who tested & used it then (at least 10
                  people, maybe more). I think most of them had a 7.x GS version.
                  (Maybe some 6.x versions too, but I don't remember exactly.)

                  Two years isn't that "quite new" anymore...

                  --
                  JanC

                  "Be strict when sending and tolerant when receiving."
                  RFC 1958 - Architectural Principles of the Internet - section 3.9

                  Comment

                  Working...