c# – 以横向打印图像?

前端之家收集整理的这篇文章主要介绍了c# – 以横向打印图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在将控件转换为位图并打印它:
using (MemoryStream ms = new MemoryStream())
{
    chart1.SaveImage(ms,ChartImageFormat.Bmp);
    Bitmap bm = new Bitmap(ms);

    PrintDocument doc = new PrintDocument();
    doc.PrintPage += (s,ev) =>
    {
        ev.Graphics.DrawImage(bm,Point.Empty); // adjust this to put the image elsewhere
        ev.HasMorePages = false;
    };

    doc.Print();
}

如何指定以横向打印?

解决方法

原文链接:https://www.f2er.com/csharp/98569.html

猜你在找的C#相关文章