http://qs1969.pair.com?node_id=11143935


in reply to Re^2: Create image from pixel values with Imager
in thread Create image from pixel values with Imager

Without more information, I can only guess, but it sounds like an off-by-one error. In your OP: "65536 values from 0-254". That suggests a 255x255 square which is 65025 values; a 256x256 square is 65536 values. Do you perhaps want to start with "65536 values from 0-255"?

Update: s/off-by-error/off-by-one error/

— Ken