Re: [fpc-pascal] working with bitmaps

2003-10-17 Thread Ivan Montes
From: "Rudolf Harney" <[EMAIL PROTECTED]> > Ivan Montes wrote: > >Did you tried SDL (www.libsdl.org)? > I tried, after You wrote to me and installed a fpc version from > http://www.grulic.org.ar/~dmoisset/sdl4fp/english.html > - but I got a windows error "sdl.dll" not found, when I tried the exampl

Re: [fpc-pascal]CRT Window Colors

2003-10-17 Thread Ralf A. Quint
At 07:37 AM 10/17/2003, Krall Ed-P27726 wrote: Is there any way to get a white background color for a console window? I use textbackground (white) from the CRT package, but the window is gray. No, as you have only 7 background colors, as one bit is reserved for the blink bit. Theoretically, you

Re: [fpc-pascal] working with bitmaps

2003-10-17 Thread Rudolf Harney
Thanks Rainer and Ivan! I reply to both answers: Rainer Hantsch wrote: >Hi! > >Linux or Windoze? both - but I have more pressure with the windows thing, right now! > ... >When Linux, I will be very interested on how you did it. I am searching for >_usable_ units since half a year or more, but find

[fpc-pascal]CRT Window Colors

2003-10-17 Thread Krall Ed-P27726
Is there any way to get a white background color for a console window? I use textbackground (white) from the CRT package, but the window is gray. Ed _ | Edward J. Krall | [EMAIL PROTECTED] | | 10838 North 110 Place | (480) 614-0423 | |

Re: [fpc-pascal]working with bitmaps

2003-10-17 Thread John Coppens
Hello Rudolf, Did you check the 'fly' program? I've use it to create something like you want to do. It's stand-alone, but from pascal you can generate a series of simple instructions into a text file, the have 'fly' execute them. According to my docs, the URL is http://martin.gleeson.com/fly/ An

Re: [fpc-pascal]working with bitmaps

2003-10-17 Thread Ivan Montes
Did you tried SDL (www.libsdl.org)? I don't know if it's exactly what you want but it's cross platform and supports alpha blending. Parsing the ascii coords. to make the bitmap overlay should be pretty easy. ciao, Ivan - Original Message - From: "Rainer Hantsch" <[EMAIL PROTECTED]> To: <

Re: [fpc-pascal]working with bitmaps

2003-10-17 Thread Rainer Hantsch
Hi! Linux or Windoze? When Linux, I will be very interested on how you did it. I am searching for _usable_ units since half a year or more, but find nothing. PasJpeg is possibly nice, but not usable (only Windoze) and I found no unit which acts a s wrapper for already existing C libraries. (And d

[fpc-pascal]working with bitmaps

2003-10-17 Thread Rudolf Harney
Hi! I want to create a coloured overlay over a (geographical) map. I do have the map as a bitmap and I wrote a fpc program, creating informations for the map (ASCII file with coordinates and values for each point on the map). I don't have experience in manipulating bitmaps, yet. Does someone kno