Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
This works fine however how do I get the output image size to be squared? The images vary so there can't be a set squared size. I also saw this viewtopic.php?t=10419 which is quite similar to my request but I can't seem to figure out how to use those commands in addition to my command.
"-trim" will create a rectangular image. You want to make this square. How? You can crop it with "-crop". Or add transparent portions to make it square with "-background None -extent 200x200". In either case, it's easiest with two commands: "identify" to get the max or min dimension, then "convert" to crop or extent.
The third method, which you probably don't want, is to resize, changing the aspect ratio.