Preserve Font Size when scaling a Drawing
- by serhio
I do the following when drawing:
Matrix m = new Matrix()
m.Scale(_zoom, _zoom)
e.Graphics.Transform = m
e.Graphics.DrawLine(...) ' line representation
e.Graphics.DrawString(...) ' line text
Now, the text became also scaled. Is it possible to avoid it?