摘要:
在GDI+时,需要用到的一些图片算法片段,网上关于这些计算的比较难找到.因此特放到网上,便于大家参考.using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Drawing.Drawing2D;namespace DrawLibrary{ public enum EndPoint : short { Start = 0, End = 1 } public class Line { Point _BeginPoint; Point _EndPoint; pu 阅读全文