示例#1
0
文件: GD.cs 项目: ststeiger/GdCaptcha
        /***********************************************************************************\
        *  GD Copying/Resizing
        \***********************************************************************************/

        public void Copy(GD src, int dstX, int dstY, int srcX, int srcY, int w, int h)
        {
            GDImport.gdImageCopy(this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, w, h);
        }