I want to crop a singlepage tif file to 2316x2720px:
convert 00000001.tif -crop 2316x2720 -repage 00000001_cropped.tif
When I use this command the result is a multipage tif file with 4 frames. First frame with 2316x2720px and 3 Frames with the rest.
How I only get the first frame in the tif file?
Without seeing your TIF, I suspect you want this:
convert 00000001.tif -crop 2316x2720+0+0 +repage 00000001_cropped.tif