Question
As an example, is there an easy way to crop away the o's in the Google logo (knowing their coordinates in advance)?
The result should then be "Ggle" with a smaller image width than the original because the o's are missing.
It doesn't have to be done with ImageMagick. It could also be Gimp, Inkscape or anyother Linux program, that can be scripted from commandline.
One option is to use the 'chop' option with 'convert' from the command line - details.
Another option is to use shave.
Note that in both cases you will probably have to make 2 images, left and right piece, and then merge them together with something like the 'append' option (details).
For actual command line scripts, look here.