Codetown ::: a software developer's community
Welcome to Kotlin Thursdays! Last week, we were able to render an image with TornadoFX and even manipulate its pixels. Today, we will go over Pixel Math!
Think of these resources as supplemental if you happen to be more curious. We always encourage looking into documentation for things you use!
Last week, we got the hang of how to grab these pixels and do something with them. Today, we're going to expand by creating our own filters using operational pixel manipulation.
For all practical purposes, we're going to be talking about monochromatic images. If we try to write filters using colored pixels, it will prove a lot more difficult to work with RGB values as opposed to just black or white.
Best we learn to walk before we start trying to fly!
In order to create our own image filters, we need to have a solid understanding of pixel math, or binary operations.
Binary operations are the bread and butter of computers! You can compute operations on binary values 1 and 0.
AND - both inputs must be true for the output to be true
0 && 0 = 0
0 && 1 = 0
1 && 0 = 0
1 && 1 = 1
OR - one or both inputs must be true for the output to be true
0 || 0 = 0
0 || 1 = 1
1 || 0 = 1
1 || 1 = 1
NOT - inverse result
!0 = 1
!1 = 0
!(0 && 0) = 1
!(1 || 1) = 0
Likewise, if we assign the color BLACK to 1 and the color WHITE to 0, we can easily apply binary operations to to the binary values black and white. Working with colors gets significantly more difficult when there are RGB values to consider. There are other binary operations like XANDS, XORS, and XNORS, but for now, let's just focus on the first three.
Now that we understand how OR, AND, and NOT works, let's implement these functions with colors.
fun or (a: Color, b: Color) {
return if (a == Color.BLACK || b == Color.BLACK) {
Color.BLACK
}
else { Color.WHITE
}
fun and (a: Color, b: Color) {
return if (a == Color.BLACK && b == Color.BLACK) {
Color.BLACK
} else {
Color.WHITE
}
}
fun not (color: Color) {
return if (color == Color.BLACK) Color.WHITE else Color.BLACK
}
You'll notice that these functions are for pixel colors only. Next week, we look into higher-order functions in Kotlin to learn how we can pass functions as a parameter - but you'll welcome to check out the video to see how we can apply one of these primitive filters to our images! See you next week :)
Tags:
Codetown is a social network. It's got blogs, forums, groups, personal pages and more! You might think of Codetown as a funky camper van with lots of compartments for your stuff and a great multimedia system, too! Best of all, Codetown has room for all of your friends.
Created by Michael Levin Dec 18, 2008 at 6:56pm. Last updated by Michael Levin May 4, 2018.
Check out the Codetown Jobs group.
Elias Nogueira shares a strategic approach to modern microservice testing, detailing solutions for three core challenges. He discusses parallel execution for multiple databases using Testcontainers, creating reliable, sharable mock environments with WireMock, and handling asynchronous event delays with Awaitility, offering a blueprint for senior engineers.
By Elias NogueiraKMP is emerging as an alternative for cross-platform development, offering a path to share code without sacrificing the performance and feel of a native application. KMP comes with its own set of trade-offs and this article dives deep into those. While it focuses primarily on Android and iOS, KMP can be used to build desktop, web, and server-side applications, all from the same shared logic.
By Rachit JainMarcin Grzejszczak, a veteran of observability spaces, discusses the current state of the space, including its evolution and the fine-grained details of how to instrument your system to capture all relevant information at every level - both inside services and between services communication.
By Marcin GrzejszczakThis week's Java roundup for August 25th, 2025, features news highlighting: the GA release of Apache Groovy; a new early-access build of Project Leyden; introducing the Helidon MCP server; point releases of JReleaser, LangChain4j, Quarkus, Camel Quarkus; the beta release of Open Liberty 25.0.0.9; and the first alpha release of Hibernate Validator 9.1.0.
By Michael RedlichThe Node.js team recently released Amaro v1.0.0, a significant milestone towards stable TypeScript support. Amaro is Node’s official type-stripping loader and is a key stepping stone towards official .ts loading.
By Bruno Couriol
© 2025 Created by Michael Levin.
Powered by