Page 1 of 1

Plananarama and Dithering

Posted: Fri May 05, 2017 1:00 pm
by fingus
When i open a Lores-Screen it Displays my 256colored-image with dithering?! :shock:

Code: Select all

@REQUIRE "plananarama"
@DISPLAY {width = 320, height = 200, mode = "fullscreen"}
@BRUSH 1, "fgs.iff"
EscapeQuit(True)

Cls
DisplayBrush(1, 0, 0)
Waitleftmouse()

Palette and how it should Display:
Image

IFF-File:
http://www.schapke.org/fgs.iff

1. How can i force to use the Palette of the loaded iff-file?
2. Maybe Hollywood don´t opens here a 8bit Screen? If not how to force that?
3. The Screen has a black bar on the top that seems to be an unusable area (it is dragable of course), the Position y=0 seems to beginn something at 20pixels.

I found nothing in the Documentation on the first sight.

Re: Plananarama and Dithering

Posted: Sun May 07, 2017 5:46 pm
by airsoftsoftwair
fingus wrote:1. How can i force to use the Palette of the loaded iff-file?
Currently, you can't. Might be a nice new feature for a future version, though.
2. Maybe Hollywood don´t opens here a 8bit Screen? If not how to force that?
Use the SCRDEPTH argument/tooltype/preprocessor tag to set the desired depth.
3. The Screen has a black bar on the top that seems to be an unusable area (it is dragable of course), the Position y=0 seems to beginn something at 20pixels. I found nothing in the Documentation on the first sight.
And what is the question here? :)

FWIW, you can turn off dithering by doing the following:

Code: Select all

@REQUIRE "plananarama", {DitherMode = "None"}
There are also some more dithering options. Take a look at the manual.