You should take a look at the Drawable classes in the code completion of Visual Studio. And it will take a lot of trail and error :)
Maybe you already found the following link on the documentation page but the examples from Anthony are great: http://www.imagemagick.org/Usage/.
To answer both your questions:
If you to make the text 'less bold' you should set the strokeColor to transparent:
And with the DrawableRotation class you can rotate the text:
Maybe you already found the following link on the documentation page but the examples from Anthony are great: http://www.imagemagick.org/Usage/.
To answer both your questions:
If you to make the text 'less bold' you should set the strokeColor to transparent:
DrawableStrokeColor strokeColor = new DrawableStrokeColor(MagickColor.Transparent);
DrawableRotation rotate = new DrawableRotation(345);
image.Draw(font, size, strokeColor, fillColor, rotate, text);