Jon S Berndt writes:
> 
> Two general application / programming / automation questions:
> 
> 1) Image conversion
> 
> Is ayone aware of a program that does on-the-fly image conversion that 
> will run under Cygwin from the command line? 

There are many :-)
ImageMagick is available via the Cygwin setup utility
 
> 2) Socket applications

see socktest.cxx in $SIMGEAR / simgear / io

Note if you use Python (1)* && (2) above are trivial scripts

* need to install the Python Imaging Library from
http://www.pythonware.com/products/pil/

(1)
import Image
im = Image.open("trivial.pcd")
im.save("trivial.png")

(2)
http://www.amk.ca/python/howto/sockets/

Norman


_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to