goto2008

GOTO2008

博客园 首页 新随笔 联系 订阅 管理
        string path=Server.MapPath("qq.jpg");
            System.Drawing.Image image 
= System.Drawing.Image.FromFile(path);
            System.Drawing.Image copyImage 
= System.Drawing.Image.FromFile( Server.MapPath("logo3.gif"));
            Graphics g 
= Graphics.FromImage(image);
            g.DrawImage(copyImage, 
new Rectangle(image.Width-copyImage.Width, image.Height-copyImage.Height, copyImage.Width, copyImage.Height),00, copyImage.Width, copyImage.Height, GraphicsUnit.Pixel);
            g.Dispose();
            image.Save(Server.MapPath(
"abc.jpg"));
posted on 2006-07-18 19:48  GOTO2008  阅读(455)  评论(1)    收藏  举报