Shoutbox

Hiding lines of text - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Hiding lines of text (/showthread.php?tid=67507)

Hiding lines of text by rob_botch on 10-20-2006 at 05:38 PM

I have to write a program that chops off the top half of words. My query is this: In VB(.NET), is it possible to put text into an image file and then edit individual pixels of this file? If not, does anybody know of a language that will allow this?

Thanks

Robert


RE: Hiding lines of text by hmaster on 10-20-2006 at 05:40 PM

In PHP you can load the image and draw pixels on top of the image.

http://php.net/gd


RE: Hiding lines of text by rob_botch on 10-20-2006 at 05:43 PM

Thanks, but ideally this will be a standalone program, not on the web.

Thak you anyway


RE: Hiding lines of text by hmaster on 10-20-2006 at 06:32 PM

In VB.NET I think you can use GDI+ to manipulate images?


RE: Hiding lines of text by RaceProUK on 10-20-2006 at 11:13 PM

Using GDI+, draw the text on a canvas, then crop the top half of the text off. It shouldn't be too difficult, except you may have to know the exact size of the drawn text.