111,125
社区成员
发帖
与我相关
我的任务
分享
Image temp = Image.FromFile(@"image\11.jpg");
Graphics g = Graphics.FromImage(temp);
g.DrawImage(temp, 0, 0, temp.Width, temp.Height);
temp = Image.FromFile(@"image\农村信用合作社支票.jpg");
Graphics g = Graphics.FromImage(temp);
if(!isPrinting)
{
g.DrawImage(temp, 0, 0, temp.Width, temp.Height);
}
g.DrawString(DateTime.Now.Year.ToString(), f1, b, 78, 168);
....................
int x = e.MarginBounds.X;
temp = Image.FromFile(@"image\农村信用合作社支票.jpg");
Graphics g = Graphics.FromImage(temp);
g.DrawImage(temp, 0, 0, temp.Width, temp.Height);
g.DrawString(DateTime.Now.Year.ToString(), f1, b, 78, 168);
....................
int x = e.MarginBounds.X;
int y = e.MarginBounds.Y;
int width = temp.Width;
int height = temp.Height;
Rectangle destRect = new Rectangle(x, y, width, height);
e.Graphics.DrawImage(temp, destRect, 0, 0, temp.Width, temp.Height, System.Drawing.GraphicsUnit.Pixel);