How did this person code "Hello World" with Microsoft Paint?

C++CPaint

C++ Problem Overview


I have just seen this within the past few days and cannot figure out how it works. The video I talk about is here:

It's the top rated answer from this Stack Overflow question: Why was this program rejected by three compilers?

How is this bitmap able to show a C++ program for "Hello World"?

C++ Solutions


Solution 1 - C++

A BMP (DIB) image is composed by a header followed by uncompressed1 color data (for 24 bpp images it's 3 bytes per pixel, stored in reverse row order and with 4 bytes row stride).

The bytes for color data are used to represent colors (i.e. none of them are "mandated" by the file format2, they all come from the color of each pixel), and there's a perfect 1:1 correspondence between pixel colors and bytes written in the file; thus, using perfectly chosen colors you can actually write anything you want in the file (with the exception of the header).

When you open the generated file in notepad, the color data will be shown as text; you can still clearly see from the header (the part from BM to the start of the text), that is mandated by the file format.

In my opinion this video was done this way: first the author calculated the size needed for the bitmap, and created a DIB file of the correct size filled with a color that expands to a simple pattern (e.g. all bytes 65 => 'A'); then replaced such pattern with the "payload" code, as shown in the video.

Notice however that it's not impossible to hand-craft the whole thing with notepad - with the color chooser dialog, an ASCII table and a basic knowledge of the DIB format it can be done, but it would be much much slower and error-prone.

More info about the DIB format


  1. There are RLE compressed DIBs, but in this case uncompressed bitmaps are used (and they are used really rarely anyway).
  2. With the exception of the stride, that was avoided using rows multiple of 4 bytes.

Solution 2 - C++

I assume you're referring to the answer to one of the April Fools questions.

My guess is that each pixel has a binary representation for it. And that each character in source code has a binary representation for it.

The person who created the program must have worked out the color for each pixel that'd have a binary representation that'd correspond to each character.

Solution 3 - C++

From a theoretical computer science point of view, it would be interesting to ask, if every program can be written in such a way so that, viewed as a bitmap, you actually saw the source code that does the same thing. If you are seriously interested in such results, read e.g. about the Kleene's fixed point theorem.

Program-as-an-image can also be viewed as a form of code obfuscation. Not that it were particularly practical...

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEamonn O'BrienView Question on Stackoverflow
Solution 1 - C++Matteo ItaliaView Answer on Stackoverflow
Solution 2 - C++Andrew GrimmView Answer on Stackoverflow
Solution 3 - C++Sergey OrshanskiyView Answer on Stackoverflow