1. Saving PCX
- Posted by James A Bearden <j-solo at JUNO.COM>
Jan 11, 1998
-
Last edited Jan 12, 1998
I have a really simple question. Has anybody written a routine to save
an image (256 color) in PCX format, and if so, where can I find it? I
just need a way to convert BMPs to PCX without having to load a graphics
conversion program.
Jim Bearden
(J-Solo at juno.com)
2. Re: Saving PCX
James A Bearden wrote:
>
> I have a really simple question. Has anybody written a routine to save
> an image (256 color) in PCX format, and if so, where can I find it? I
> just need a way to convert BMPs to PCX without having to load a graphics
> conversion program.
>
> Jim Bearden
> (J-Solo at juno.com)
Been there. Done That... Look in the Archive or the User contrib. on the
Official Page.
My question; Does the interpreter Close all unclosed files on exit?
I assume it does.
--
// !NEW! Http://www.geocities.com/SiliconValley/Lab/7577 ///////////
// Michael J. Raley's Modular reality Journal //
///////////////////////////////////////////////////////////////////
3. Re: Saving PCX
Jim Bearden writes:
> I have a really simple question. Has anybody written a
> routine to save an image (256 color) in PCX format,
> and if so, where can I find it?
See Christopher Street's recent contribution on
the Euphoria Web site. He has routines to make .PCX
and .GIF files.
Regards,
Rob Craig
Rapid Deployment Software
http://members.aol.com/FilesEu/
4. Re: Saving PCX
Michael J. Raley asks:
> Does the interpreter Close all unclosed files on exit?
Yes, it does. This flushes out any remaining
characters in the output buffer for each file.
You can also call close() at any time when
you are finished with a file. Euphoria has a limit
of 15 open files at any one time. No one has
complained so far. DOS may further limit you.
Regards,
Rob Craig
Rapid Deployment Software
5. Saving PCX
- Posted by James A Bearden <j-solo at JUNO.COM>
Jan 13, 1998
-
Last edited Jan 14, 1998
Thanks for the help. I'm going to go download the routines and see if
they're what I need.
Jim Bearden
(J-Solo at juno.com)