by Alex » Mon Dec 06, 2010 10:57 am
If you go to the image folder, what size does the Explorer report for each image?
If you enter the image (they are only directories), you can see a file with the same name as the folder, which you can send to the support, in it all sizes are stored that are reported back to HDClone.
If you have a hex editor (or at least viewer, you don't want to destroy the image control files), you can open these files. They are, after 8 bytes of header always consisting of 8 bytes preamble containing a type and a length N and then N bytes of data.
An example:
[pre]
49 4D 47 43 01 00 00 00 IMGC, Version 1
00 00 00 00 07 00 00 00 33 39 35 2E 69 6D 67 Type 0, Length 7,
01 00 00 00 07 00 00 00 48 44 43 6C 6F 6E 65 Type 1, Length 7,
02 00 00 00 00 00 00 00 Type 2, Length 0,
04 00 00 00 07 00 00 00 08 0B DA 07 16 0C 1B Type 4, Length 7,
05 00 00 00 00 00 00 00 Type 5, Length 0,
00 10 00 00 08 00 00 00 38 36 39 46 43 33 42 35 Type 1000, Length 8,
01 10 00 00 08 00 00 00 00 00 00 00 00 00 00 00 Type 1001, Length 8,
02 10 00 00 08 00 00 00 4A 7E 00 00 00 00 00 00 Type 1002, Length 8,
03 10 00 00 08 00 00 00 3F 00 00 00 00 00 00 00 Type 1003, Length 8,
07 10 00 00 04 00 00 00 05 00 00 00 Type 1007, Length 4,
04 10 00 00 08 00 00 00 3E 00 00 00 00 00 00 00 Type 1004, Length 8,
00 20 00 00 04 00 00 00 00 00 00 00 Type 2000, Length 4,
08 10 00 00 00 00 00 00 Type 1008, Length 0,
...
[/pre]
Now pay special attention to type 1002, the 8 bytes data tell how many bytes this part of the image is large (there are as many type 1002 tags in the file as there are partitions plus one). In the example above, the value is 7E4A, which is 32330 bytes. Type 1001's value is 0, which is where this partition starts, and Type 1003's value is 3F, which is 63 in decimal notation, which means this first partition is 63 sectors in size. Type 1004's value is 3E, which is 62 in decimal, it denotes the number of the highest sector of this partition stored in the image.
By scanning the file like this, you can find out the individual sizes of the partitions in your image. You're probably better off sending the file to support@miray.de, though.