If I ArrayPlot an {1200,1600} matrix, the result is a plot with ImageDimensions of {360,273} pixels:
ArrayPlot[RandomReal[{0, 1}, {1200, 1600}]];
ImageDimensions[%]
{360, 273}
I can't find an scaling option. How can I get a plot with a resolution of {1200,1600}?
ImageDimensionsreturns the number of displayed pixels not the number of blocks used byArrayPlot– sebhofer Jul 19 '13 at 09:07ArrayPlot[RandomReal[1,{100,100}],PixelConstrained->True,ImageSize->{100,100}]– sebhofer Jul 19 '13 at 09:25