User916522668 posted
I use this code. I fix it. Thanks again
string strImagePath = Server.MapPath("es.png");
string strImagePath1 = Server.MapPath("es00.png");
string strImagePath2 = Server.MapPath("es01.png");
string strImagePath3 = Server.MapPath("es02.png");
string strImagePath4 = Server.MapPath("es03.png");
string strImagePath5 = Server.MapPath("es04.png");
string strImagePath6 = Server.MapPath("es05.png");
string strImagePath7 = Server.MapPath("es06k0.png");
Image img = Image.FromFile(strImagePath);
Graphics g = Graphics.FromImage(img);
g.DrawImage(Image.FromFile(strImagePath1), new Point(0, 0));
g.DrawImage(Image.FromFile(strImagePath2), new Point(0, 0));
g.DrawImage(Image.FromFile(strImagePath3), new Point(0, 0));
g.DrawImage(Image.FromFile(strImagePath4), new Point(0, 0));
g.DrawImage(Image.FromFile(strImagePath5), new Point(0, 0));
g.DrawImage(Image.FromFile(strImagePath6), new Point(0, 0));
g.DrawImage(Image.FromFile(strImagePath7), new Point(0, 0));
img.Save(Server.MapPath("MergeImage1.png"), ImageFormat.Png);
Response.ContentType = "image/PNG";