Morgan,
We tried opening a 6.1 saved png with 6.0 and it worked fine. There are no reports of problems. However, if you are trying to read an save files that are greater than 8 bits, you want to keep in mind that there is no standard data format, so most other viewers including Internet Explorer only display the first 8bits of data and truncate the rest. This will display data stating at the most significant bit, but since we consider all 16 bits in processing, we store all of our data from the least significant bit up. Therefore, you may only be viewing the upper few bits. For instance if we stored 0000111111111111 for a 12 bit pixel, the Internet Explorer would only display 00001111 in the image, which will not map properly. You would want to bit shift the data the n
eeded number of bit. In this case 4 bits to display 11111111. I hope this helps.
Best Regards,
Chris D