$transCrop = MagickCropImage( $original, $dest_x, $dest_x, $offset_x, $offset_y );
Using this function gives me a problem if I want the image to be 110x110 and the original image is 200 X 50. It just crops the image into 110 X 28. What I really want is to force it into 110X110 so that the image centers in the "110x110 Box", with a white background filling the space not used. The API has a ton of functions that make no sense to me. Should I first use a wand to draw a 110 and then composite over? I'm not even sure how to switch from using the MagickWand to the DrawWand.