473,386 Members | 1,835 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

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.

Jul 18 '05 #1
8 1386

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:
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.


Jul 18 '05 #2
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:
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:

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.



Jul 18 '05 #3
On Sat, 17 Apr 2004 23:32:01 -0500, Reid Nichol wrote:
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...


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

Jul 18 '05 #4
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:
On Sat, 17 Apr 2004 23:32:01 -0500, Reid Nichol wrote:

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...

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


Jul 18 '05 #5
Reid Nichol wrote
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.


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

</F>


Jul 18 '05 #6
On Sun, 18 Apr 2004 13:26:18 -0500, Reid Nichol <rn*********@yahoo.com>
declaimed the following in comp.lang.python:
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'
import sys
if sys.platform == "win32":
print "On windows"

-- ================================================== ============ <
wl*****@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG <
wu******@dm.net | Bestiaria Support Staff <
================================================== ============ <
Home Page: <http://www.dm.net/~wulfraed/> <
Overflow Page: <http://wlfraed.home.netcom.com/> <

Jul 18 '05 #7

"Reid Nichol" <rn*********@yahoo.com> wrote in message
news:78*****************@news1.mts.net...
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.

I test my gs things through cygwin on my windows box.
hth

bobb

Jul 18 '05 #8
Reid Nichol <rn*********@yahoo.com> schreef:
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 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
Jul 18 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
1
by: Rafael | last post by:
Hi, I hope I can find some help for this problem IDE: Visual Studio.NET 2003 Developer Editio Language: C# Problem: "An unhandled exception of type 'System.NullReferenceException' occurred in...
0
by: Softer | last post by:
Hi I have been installed Longhorn, alfa version from PDC 2003. I tryed to install Visual Studio 8.0 "Whidbey", version Beta March 2004, under Longhorn and doesen't work. : I instaled Whidbey under...
5
by: sugaray | last post by:
Right now, the code I wrote below seems works fine, i know it's definitely not the best solution, so if there are better solutions to eschew from using goto statements to jump out of multiple loops...
5
by: Steve Teeples | last post by:
Can someone point me to a document that clearly identifies the steps of creating a good help system for an application? I have a test tool that I'd like to add help to so that others will know how...
2
by: Sean Carey | last post by:
I converted a C# Upload app to VB.NET and am down to one error and was hoping someone could help me with te error. I would greatly appreciate help from anyone. Here is the error: ...
1
by: mfunkmann | last post by:
Hi, I recently got an error and I don't know how to fix it: Error 1 'System.Data.DataColumn' does not contain a definition for 'Windows' C:\c#\CsharpPRO\Form1.Designer.cs 304 77 CsharpPRO I...
10
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably...
2
by: Thomas Bauer | last post by:
Hello, I have a config file. <?xml version="1.0" encoding="utf-8"?> <configuration> <appSettings> <add key="Directory" value="C:\_Database\" /> <add key="CloseApplication" value="0" />...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.