--- ../GD-2.30-orig/GD.xs Tue Oct 18 20:18:39 2005 +++ GD.xs Mon Aug 13 05:00:26 2007 @@ -1946,6 +1946,23 @@ copyResampled(destination,source,dstX,ds } void +blend(dst,src,dstX,dstY,srcX,srcY,w,h,pct) + GD::Image dst + GD::Image src + int dstX + int dstY + int srcX + int srcY + int w + int h + int pct + PROTOTYPE: $$$$$$$$$ + CODE: + { + gdImageBlend(dst, src, dstX, dstY, srcX, srcY, w, h, pct); + } + +void copyMerge(destination,source,dstX,dstY,srcX,srcY,w,h,pct) GD::Image destination GD::Image source