update readme

This commit is contained in:
javl
2020-08-23 18:37:11 +02:00
parent 70c21e5c69
commit 7ca5c96f4a
+2 -3
View File
@@ -1,7 +1,6 @@
## image2cpp ## ## image2cpp ##
Use the orignal tool online at http://javl.github.io/image2cpp/ Use this tool online at http://javl.github.io/image2cpp/
Use my version at http://hurricaneJoef.github.io/image2cpp/
image2cpp is a simple tool to change images into byte arrays (or your array back into an image) for use with (monochrome) displays suchs as OLEDs, like those from Adafruit or Sparkfun. While searching for a way to generate these arrays, I mostly found links to a piece of Windows software. Both the flakey results and the hassle of having to boot a virtual machine just to convert an image lead to me writing this pure html + javascript solution. image2cpp is a simple tool to change images into byte arrays (or your array back into an image) for use with (monochrome) displays suchs as OLEDs, like those from Adafruit or Sparkfun. While searching for a way to generate these arrays, I mostly found links to a piece of Windows software. Both the flakey results and the hassle of having to boot a virtual machine just to convert an image lead to me writing this pure html + javascript solution.
Alternatively you can also enter a byte array as input to turn it back into an image. This might be useful for debugging, or when you want to write the byte array yourself. I don't know. Alternatively you can also enter a byte array as input to turn it back into an image. This might be useful for debugging, or when you want to write the byte array yourself. I don't know.
@@ -17,5 +16,5 @@ You can find a simple Arduino example sketch [over here](https://github.com/javl
I wrote the code with my 128x64 pixel monochrome OLED display in mind, but it should work with most similar displays. You might need to change some export settings; those are explained in the tool. I wrote the code with my 128x64 pixel monochrome OLED display in mind, but it should work with most similar displays. You might need to change some export settings; those are explained in the tool.
### Credit ### ### Credit ###
Initial code by [javl](https://github.com/javl), with aditional code by (in alphabetical order) [davidalim](https://github.com/davidalim), [jochenderwae](https://github.com/jochenderwae), [whoisnian](https://github.com/whoisnian) and [wiredolphin](https://github.com/wiredolphin). Initial code by [javl](https://github.com/javl), with aditional code by (in alphabetical order) [davidalim](https://github.com/davidalim), [hurricaneJoef](https://github.com/hurricaneJoef), [jochenderwae](https://github.com/jochenderwae), [whoisnian](https://github.com/whoisnian) and [wiredolphin](https://github.com/wiredolphin).
The example sketch is based on code by [Adafruit](https://github.com/adafruit). The example sketch is based on code by [Adafruit](https://github.com/adafruit).