1. I'm looking for code that loads jpg, png, etc into euphoria sequences (16million colors)
- Posted by mindwalker Mar 10, 2010
- 1190 views
I'm hoping to write a dos program that will manipulate the picture pixels at the RGB level. Anyone able to recommend some existing code for loading the pictures?
2. Re: I'm looking for code that loads jpg, png, etc into euphoria sequences (16million colors)
- Posted by ssallen Mar 10, 2010
- 1135 views
That actually runs under DOS... or just a console app? If it is going to be a console app (and not ACTUALLY running on DOS) then just use SDL_Wrap and then manipulate the surfaces. If you need to re-save to the original image formats afterwards then SDL will do that too. If you mean an ACTUAL DOS app then... eh... good luck? :)
Thanks, Steve A.
3. Re: I'm looking for code that loads jpg, png, etc into euphoria sequences (16million colors)
- Posted by dcole Mar 11, 2010
- 1187 views
I'm hoping to write a dos program that will manipulate the picture pixels at the RGB level. Anyone able to recommend some existing code for loading the pictures?
Don Cole
4. Re: I'm looking for code that loads jpg, png, etc into euphoria sequences (16million colors)
- Posted by mindwalker Mar 11, 2010
- 1089 views
I'm hoping to write a dos program that will manipulate the picture pixels at the RGB level. Anyone able to recommend some existing code for loading the pictures?
Don Cole
Is the code that loads the pictures separated from the display features? I don't want a slide show, zoom, scoll, etc., just code for loading pictures into Euphoria sequences. I want to be able to change the rgb values for each of the pixels in the picture and periodically display an updated version of the picture to the display (full screen). In particular I'm looking for 16 million colors, not a pallet of 256 colors.