function [r,g,b] = IndexToRGB8Byte(a) r = floor( a / (256*256) ); g = floor( (a-r*256*256) / 256); b = mod( a, 256 );