DrawToBitmap
Posted: 17 Apr 2007, 01:39
When using the
private void Document_PrintPage(object sender, PrintPageEventArgs e)
{
<div align="left"> if (_cadImage != null) // this is CADImage object
{
_cadImage.Draw( e.Graphics, _rectCadImage );
}</div id="left"> }
I can get the lines and graphical aspects of the drawing to print correctly, but the text does not seem to resize with the drawing. If anything it gets signifigantly smaller.
On screen, the CADImage appears to render correctly, drawing the CADImage object to a printer does not. Any ideas?
private void Document_PrintPage(object sender, PrintPageEventArgs e)
{
<div align="left"> if (_cadImage != null) // this is CADImage object
{
_cadImage.Draw( e.Graphics, _rectCadImage );
}</div id="left"> }
I can get the lines and graphical aspects of the drawing to print correctly, but the text does not seem to resize with the drawing. If anything it gets signifigantly smaller.
On screen, the CADImage appears to render correctly, drawing the CADImage object to a printer does not. Any ideas?