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?".
Try forcing the x,y coordinate to zero with
-extract 100x100+0+0
Wizards:
When I tested this with 100x100, I either get the fullsized image or one that has been reduced to no larger than 100x100.
My guess is that the geometry isn't being initialized to zero in ReadImage in constitute.c
no they are not -extract is a stream processing option that may not work with all image formats. -crop works on the image that was completely read into memory.
WARNING: crop also preverves the images 'offset' meta-data on the virtual canvas. Some formats save that info, and it can effect other operations. I suggest if you don't care about the offset you add +repage after the -crop.