15
1
Mission is simple. Just output number 2015 as QR code and write it to file named newyear.png
in PNG format. Code must be valid any day, so maybe you shall not use current year.
QR code as text looks like this:
# # # # # # # # # # # # # # # # # #
# # # # #
# # # # # # # # # # # # #
# # # # # # # # # # # #
# # # # # # # # # # # #
# # # #
# # # # # # # # # # # # # # # # #
# # #
# # # # # # # # # #
# # # # # # # # # # # #
# # # # # # # # # # # # # #
# # # # # # # # #
# # # # # # # # # # #
# # # #
# # # # # # # # # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # # # #
# # # # # # # # # # # # #
# # # # # # # # # #
# # # # # # # # # # # #
The result written in newyear.png
must contain that QR code with white 5 pixel borders and one pixel sized dots. It must not contain anything else than QR code.
1can it be hardcoded, or must you generate the qr code? – undergroundmonorail – 2014-12-29T11:14:07.457
7Much more answers will come if this is ascii art output based and not image output. – Optimizer – 2014-12-29T11:37:46.330
6
Does the code have to be exactly correct with no errors, or is it enough that it scans correctly? (QR codes have a lot of deliberate redundancy and error correction, so you can flip a lot of pixels and they'll still work.) Also, does it have to be PNG, or can we use other image formats (I'm thinking particularly about PBM here)?
– Ilmari Karonen – 2014-12-30T01:49:33.837