├── .gitignore ├── Makefile ├── README.md ├── font ├── OFL.txt ├── README.txt └── cmunrm.ttf ├── sample.png ├── stb_image_write.h ├── stb_truetype.h └── text2image.c /.gitignore: -------------------------------------------------------------------------------- 1 | tex2image 2 | out.png 3 | cmunrm.h 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/README.md -------------------------------------------------------------------------------- /font/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/font/OFL.txt -------------------------------------------------------------------------------- /font/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/font/README.txt -------------------------------------------------------------------------------- /font/cmunrm.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/font/cmunrm.ttf -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/sample.png -------------------------------------------------------------------------------- /stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/stb_image_write.h -------------------------------------------------------------------------------- /stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/stb_truetype.h -------------------------------------------------------------------------------- /text2image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmeiners/text2image/HEAD/text2image.c --------------------------------------------------------------------------------