Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Yes it is a good idea. but it may not be practical, as IM can't calculate a partial filesize!!! Especially of a multi-image file format like GIF, where parts of later 'frames' could share a common 'global colormap'. It just does not make sense.
Of course other multi-image formats, like MIFF 9which is just a concatenation of uncompressed single images, it would be reasonably simple to do, but will need to be done by the coder.
You can tell it is from the same file in "identify" as the filename at the start of the line is the same.
Yes it is a good idea. but not one that can can be implemented easily.
why not then internally convert the image to MIFF and then compute the file size of each frame and return that with the result of the identify? it could be a special option (like -verbose) with identify so that one knows it is going to be extra processing.
That is do-able, A rough calculation of just the uncompressed binary data size may also be possible, but it will not be a file size for a specific file format, with specific compression.