void gdcopyRotated(dst,src,dstX,dstY,srcX,srcY,srcW,srcH,angle) GD::Image dst GD::Imagesrc double dstX double dstY int srcX int srcY int srcW int srcH int angle PROTOTYPE: $$$$$$$$$ CODE: { #ifdef VERSION_33 gdImageCopyRotated(dst,src,dstX,dstY,srcX,srcY,srcW,srcH,angle); #else die("libgd 2.0.33 or higher required for copyRotated support"); #endif }