Project Description:
Hello,
I need a very simple library for a Windows C++ program. I need a function, where I can pass a string, a font, and a font size, and I get back a point list of the outline of the string.
The point list coming back should be the format: x,y, draw/move Where x and y are floats. And draw/move is either a 1 or 0 indicating if a line should be drawn from the previous coordinate to the current one. The first entry should be a 0, for move to that starting point.
The demo program you write be a command line program, where i can pass a command line string, and the output will be a text file containing the coordinates.