程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 使用Brush類繪製圖像

使用Brush類繪製圖像

編輯:.NET實例教程
public partial class TextureBruse : Form
    ...{
        private Image theimage;
        private Image smallimage;

        public TextureBruse()
        ...{
            InitializeComponent();

            SetStyle(ControlStyles.Opaque, true);
            Bounds = new Rectangle(0, 0, 500, 500);
            theimage = new Bitmap("ico.gif");      //Application.StartupPath+@"ico.gif"
            smallimage = new Bitmap(theimage, new Size(theimage.Width, theimage.Height));
        }
        protected override void OnPaint(PaintEventArgs e)
        ...{
            Graphics g = e.Graphics;
            g.FillRectangle(Brushes.White,ClIEntRectangle);
            
            Brush brush = new TextureBrush(smallimage, new&nbs(0, 0,smallimage.Width, smallimage.Height));
            //用圖像創建畫筆,來繪制圖像
            g.FillEllipse(brush, new Rectangle(0,200,200,200));
            //用圖像創建剛筆,來繪制圖像
            Pen pen=new Pen(brush,20);
            g.DrawRectangle(pen, new Rectangle(250, 200, 200, 200));
            //用圖像繪製文本
            Font font = new Font("Times New Roman", 40, FontStyle.Bold | FontStyle.Italic);
            g.DrawString("Hello Image !!", font, brush, new Rectangle(0,0,500,font.Height));

            brush.Dispose();
            font.Dispose();
        }
    }

 運行效果圖:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved