Trisha Shetty (Editor)

ZX Spectrum graphic modes

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
ZX Spectrum graphic modes

The ZX Spectrum is generally considered to have limited graphical capabilities in comparison to some other home computers of the same era such as the Commodore 64, largely due to its lack of a dedicated graphics chip. Nevertheless, throughout its commercial life and later activity on the demoscene, various techniques have been developed to provide (or emulate) improvements to the Spectrum's graphical output.

Contents

Color palette

The ZX Spectrum (and compatibles) computers uses a variation of the 4-bit RGBI palette philosophy. This results in each of the colors of the 3-bit palette having a basic and bright variant, with the exception of black. The bright half of the palette is generated using the video display's maximum voltage levels for each of the three R/G/B color components that a color uses. The basic half of the palette is displayed by simply reducing these voltages.

In the ZX Spectrum encoding the color components are in GRB order (from most to least significant bit) rather than the more common RGB order. The GRB order has the advantage that the color numbers become ordered by increasing luminance, so if viewed on black-and-white display the ordered sequence 0-7 would form a gradient from black to white. Specifically, blue has a binary weight of 1, red has a weight of 2, and green has a weight of 4. As with any binary number, these weights add up to produce a single decimal number that matches the displayed color, the effect of which can be seen in the table below (pay special attention to the "binary value" column).

For any value of n from 0 to 7, the following commands can be used to set or alter the screen's colors:

  • BORDER n, the color for surrounding area outside the main bitmap.
  • PAPER n, the background (pixel bit value of 0) color for the color cell to be altered.
  • INK n, the foreground (pixel bit value of 1) color for the color cell to be altered.
  • Furthermore, the BRIGHT command can be used to change the setting of the PAPER and INK commands' "bright" flag (the I in RGBI), giving them access to the entire 15-color palette. Settings of "0" and "1" turn bright mode off and on (respectively). Since only one bit within a color attribute byte is used to select the brightness for both foreground and background colors in a color cell, it is not possible to select both bright and basic color modes in the same color cell. The BORDER command does not use a bright flag, thus only the eight basic colors are supported.

    Counting from least to most significant bit, an attribute byte dedicates three bits for the foreground color, three bits for the background color, one bit for the bright flag, and one bit for the flashing effect (which causes the video display to alternate foreground and background colors periodically).

    Colors simulated as RGB assume non bright as 85% voltage (0.55v) and bright as 100% (0.65v). Viewing on a PAL display would be subject to gamma and as such the non bright values would appear lighter. Each ZX Spectrum model used different voltages for colors, so the values here are only indicative.

    Dithering

    This quite short color palette has urged the graphic artists (e.g. at ZX-Art) to resort to various dithering techniques; the simplest of which employs ordered patterns, as shown exhaustively in the opposite chart. Dithering also works very well with the original Composite video connection to an analog PAL TV, generating color mixing along horizontal pixel lines.

    Hardware implementation

    The original ZX Spectrum has a screen resolution of 256×192 pixels. Colour information is overlaid onto this as a grid of 8×8 pixel regions known as attribute blocks; within each attribute block, only two colours may be used out of a palette of 8 (black, blue, red, magenta, green, cyan, yellow and white). Additionally, the entire attribute block may be designated as 'bright', resulting in a total of 15 possible colours (because both bright and dark black is the same color #000000). In many programs this limitation was evident as attribute clash.

    Details: Pixels: 256 × 192 Attributes: 32 × 24 Colors: 15

    Actual resolution over composite video connections

    Due to the limitations of the original Composite video connection to an analog PAL TV, adjacent pixels were in fact blurred out horizontally (see Composite artifact colors). The resulting resolution depended on the quality of the TV set and on the color combinations used by each particular image, but on most cases was similar to ~128x192.

    This effect was used to increase the number of displayed colours on screen by almost all of the graphic designers, using dithering techniques. Close to a total of 64 colours become possible this way. Some emulators provide some sort of "blur" image processing trying to simulate this effect.

    Details: Pixels: ~128 × 192 Attributes: 32 × 24 Colors: ~64 (if dithering was used)

    Monochrome TVs and monitors

    By using a monochrome monitor or black and white TV (or reducing the colour settings of a colour TV), it is possible to take advantage of the differences in intensity over the Spectrum's colour range to generate a 15-shade grayscale image at 256×192 resolution.

    Details: Pixels: 256 × 192 Attributes: 32 × 24 Colors: 15 grayscale

    Hardware implementation

    Several third-party Spectrum clones, including the Timex Sinclair machines and the Pentagon, support a screen mode in which attribute blocks are 8×1 pixels in size rather than the usual 8×8. A screen in this mode takes 12 KB RAM. In the case of the Timex, this mode is activated through the command OUT 255,2. In addition, this screen mode can be generated through the use of the MB-02 disk system's DMA hardware (where the technique is known as Multitech), and is also available as Mode 2 on the SAM Coupé.

    Details: Pixels: 256 × 192 Attributes: 32 × 192 Colors: 15

    "8x1" attributes

    On other Spectrum models, this effect can be replicated by exploiting the fact that the ULA re-reads the attribute information on every pixel row when generating the video output; it is possible to write a new value to the relevant memory location in between successive lines, and thus cause a different pair of colours to be shown. However, the Spectrum's processor is not fast enough to write to an entire row of attribute bytes in one scanline, so 8×1 attributes can only be achieved over 18 columns. This technique is variously known as Hicolour, Multicolour, FLI or Rainbow Processor mode.

    Details: Pixels: 256 × 192 Attributes: 32 × 192 (limited to a 18x192 area) Colors: 15

    "8x2" attributes

    A variation on this method is to change the complete row of attributes over the course of two scanlines, resulting in 8×2 pixel attribute blocks over the full width of the screen. In this situation the 128K Spectrum's shadow screen (see below) is commonly used as a back-buffer to ensure that the colour change happens simultaneously across all the attribute bytes.

    Details: Pixels: 256 × 192 Attributes: 32 × 96 Colors: 15

    "4x1" attributes

    A special case involves alternating between the two available colours per attribute cell for 4 pixels each, allowing each 4×1 region to be treated as an independently colourable 'pixel' (although the limitation of one brightness level per 8×1 cell is still in effect).

    Details: Pixels: 64 × 192 Attributes: 64 × 192 Colors: 15

    ULAPlus

    ULAPlus is compatible with the standard ZX Spectrum display, if used only to modify the 16 basic colors. Yet any software that uses the full 64 colors will trigger the "flash" attributes of the original Spectrum.

    Details: Pixels: 256x192 Attributes: 32x24 Colors: 64 (from 256) Machine: ZX Spectrum SE, Chloe 280SE, Chloe 140SE

    Interlace/Switched modes

    By alternating between two screens on every frame interrupt (50 Hz), it is theoretically possible to simulate a doubling of the vertical display resolution from 192 to 384 lines.

    The Timex clones and ZX Spectrum 128K implement a 'shadow' screen area which can be switched into place through the use of a single OUT command, and this is often utilised to rapidly switch between two images for this purpose (although this can also be achieved with a standard block copy, albeit not over the entire screen).

    When viewed on a CRT television screen (the standard at the time), the flicker is less noticeable than on a modern monitor. The image is linked to here (warning: the linked image flickers very rapidly, which could potentially cause seizures in people with photosensitive epilepsy).

    The technique does not in fact achieve a true interlaced display, as the Spectrum lacks the ability to synchronise with the display hardware at such a low level. Rather, the effect is more akin to anti-aliasing, with certain pixels appearing at half intensity.

    Details: Pixels: 256 × 384 Attributes: 32 × 24 Colors: 15

    GigaScreen

    The attributes (colours) of an image are alternated at 50Hz on the screen, taking advantage of the PAL colour system encoding for mixing. This way, the palette is increased to approximately 36 colors.

    For Pentagon machines, a hardware modification is available which directly combines the two alternate screen areas into the video signal, thus eliminating the flicker associated with this method. Furthermore, the gigascreen and hicolour techniques may be employed together to produce even richer-coloured images; this format has been named DithVIDE and BZither, both names referring to the dithering methods employed when converting true-colour images to the format.

    Details: Pixels: 256 × 192 Attributes: 32 × 24 Colors: 36

    3colour / Multichrome / RGB-3 / Interchrome

    Three separate images, comprising a red, green and blue layer, are displayed on the screen rapidly, one after the other, relying on persistence of vision effects to merge the three layers into a single coloured image. The result is an 8-colour image where each pixel may be coloured independently.

    This effect is simulated in another image linked to here (warning: the linked image flashes colors very rapidly, which could potentially cause seizures in people with photosensitive epilepsy); the flashing is less noticeable when viewed on a television screen.

    Details: Pixels: 256 × 192 Attributes: 256 × 192 Colors: 8

    256×192, 256 colors, "256 Colour Mode", no attributes

    The SPEC256 and EmuZWin emulators have a screen mode 256×192 pixels where each pixel can be in one of 256 colors. This is achieved by extending the word size of the emulated Z80 from 8 bits to 64, making eight bits of data available for each pixel; the screen thus takes 48 kB of memory. This mode only exists on the emulator and software graphics must be modified to use it.

    Details: Pixels: 256 × 192 Attributes: 256 × 192 Colors: 256

    Compatible machines

    Latter ZX Spectrum compatible machines offered extra video modes. These are based on the standard 256x192 mode but incompatible with the original Spectrum.

    512×192 monochrome

    This mode was mainly used to display 64×24 or 80×24 columns text screen and only Timex Sinclair computers and some Russian clones can display it. There are two graphics editors for this mode and it is supported by BASIC64 and some CP/M implementations. It also takes 12 kB (12 KiB) RAM.

    Details: Pixels: 512 × 192 Attributes: none Colors: 2 (from 16) Machine: Timex Sinclair

    512×192x4

    Details: Pixels: 512 × 192 Attributes: 512 × 192 Colors: 4 (from 128) per line Machine: Sam Coupé

    256×192x16

    Details: Pixels: 512 × 192 Attributes: 512 × 192 Colors: 16 (from 128) per line Machine: Sam Coupé

    384x304x16

    Details: Pixels: 384x304 Attributes: 48 × 38 Colors: 16 Machine: Pentagon

    512x384x2

    Details: Pixels: 512x384 Colors: monochrome Machine: Pentagon, Timex Sinclair 2128

    16c

    Details: Pixels: 256x192 Attributes: 256x192 Colors: 16 Machine: ATM Turbo, Pentagon

    HAM256

    Details: Pixels: 256x192 Attributes: 32x192 Colors: 32 per line (from 256) Machine: ZX Spectrum SE, Chloe 280SE, Chloe 140SE

    References

    ZX Spectrum graphic modes Wikipedia