Void Space Sage Sessions Binary Dither

Previous Session Next Session

Today's topic: Binary Dither, the art of rendering 2D images with 1D resolution.

We'll be exploring the nuances of dithering, including its applications in digital art, graphic design, and even astrophysics.

We'll be discussing the following agenda:

We'll have a 20-minute break for snacks and existential questioning.

Questions and comments are welcome, but please refrain from asking about the meaning of life.

Time: 10:00 AM - 12:00 PM EST

Location: Void Space Conference Room, Level 3

RSVP: Please respond to this email with your favorite color (hex code only)


			// Binary Dithering Example Code
			// By Void Space Sage Sessions
			// Version 1.0
			function dither(image) {
				for (var i = 0; i < image.width; i++) {
					for (var j = 0; j < image.height; j++) {
						var pixel = image.getPixel(i, j);
						if (pixel < 128) {
							pixel = 0;
						} else {
							pixel = 255;
						}
						image.setPixel(i, j, pixel);
					}
				}
			}