Manipulating a Bitmap
- Posted by euphoric <euphoric at cklester.com> Feb 03, 2004
- 480 views
Would it be possible to put text to a bitmap image, then print it? If so, how would it be done? --pseudo-code of what I expect will be the case: bmpID = open_bmp( "my_image.bmp" ) pos = { 15, 23 } writeToBMP( bmpID, pos, "Hello world!" ) printBMP( bmpID ) -- ;)