iTextSharp.text.Rectangle 使用方法说明
iTextSharp.text.Rectangle 使用过程中,由于这方面的中文资料较少,带来了很多不便,消耗了工作时间,
iTextSharp.text.Rectangle 的构造函数如下:
iTextSharp.text.Rectangle 的构造函数如下:
public Rectangle(float llx, float lly, float urx, float ury);
从构造函数的参数命名上根本看不出是什么意思,虽然我从Rectangle 的语义上可以看出是定义了一个区域,但不知道这四个参数的坐标原点在哪里,所以不弄清其语义将产生很多意外的情况,让你不知所措。public Rectangle(float llx, float lly, float urx, float ury);
llx 为Left ,lly 为Bottom,urx 为Right,ury 为Top
其中:Width=Right - Left Heigth = Top - Bototom
坐标原点为:左下角
llx 为Left ,lly 为Bottom,urx 为Right,ury 为Top
其中:Width=Right - Left Heigth = Top - Bototom
坐标原点为:左下角