$begingroup$

enter image description here

I made this picture code some time again. The reply is a significant phrase within the English language.

archmundada is a brand new contributor to this web site. Take care in asking for clarification, commenting, and answering.
Take a look at our Code of Conduct.

$endgroup$

4

$begingroup$

Step one is to make the picture into a way more readable format that eliminates any pointless data. After dividing up the grid as such, an fascinating sample emerges.
Divided Grid

Every sq. quadrant has precisely one shaded pixel in certainly one of its 4 corners. Due to this fact, every sq. will be assigned a quantity from 0 to three based mostly on the pixel’s place.
0 3 2 1 0 3
1 1 0 1 0 1
0 3 2 0 0 1
2 3 0 3 0 2
This sample truly incorporates a 0 each 4 numbers, and the whole variety of numbers is divisible by 4, so it is smart to reallot the numbers in teams of 4.
0 3 2 1
0 3 1 1
0 1 0 1
0 3 2 0
0 1 2 3
0 3 0 2

[Thanks to user39583 for figuring out this next step!]
It could make sense that, since every line has 8 bits of knowledge, it will be one 8 bit binary character per line. All ASCII letters start with “01” in binary, so it will make sense that “0” would map to “01”. The remainder of the mapping will be deduced as follows:
0 -> 01
1 -> 11
2 -> 00
3 -> 10
This offers the next binary strings:
01100011
01101111
01110111
01100001
01110010
01100100
This decodes to the ultimate reply (in lowercase), COWARD.

$endgroup$

3