资 源 简 介
C#通过GDI+绘制带刻度尺的数学坐标系,应用于图形图像编程,各类统计图表绘制,以及对图形图像编程中数值坐标的研究。
调用方式(以WINFORM为例,其他类推):
Bitmap m_Bitmap=null;
private void menuItem_Click(object sender, EventArgs e)
{
m_Bitmap = new Bitmap(1000, 800);
Graphics g = Graphics.FromImage(m_Bitmap);
g.SmoothingMode = SmoothingMode.HighQuality;
g.Clear(Color.White);
MathCoordinate mathCoordinate = new MathCoordinate();
mathCoordinate.IsDrawGrid = true;