Wolfram mathematica 在光栅中使用色调时是否为空图形?

Wolfram mathematica 在光栅中使用色调时是否为空图形?,wolfram-mathematica,Wolfram Mathematica,为什么下面的代码 Graphics[Raster[{{Hue[1], Hue[1/3]}, {Hue[2/3], Hue[1/6]}}]] 不生产任何产品?在Mathematica

为什么下面的代码

Graphics[Raster[{{Hue[1], Hue[1/3]}, {Hue[2/3], Hue[1/6]}}]]
不生产任何产品?在Mathematica<6中,RasterArray能够处理这个问题,并产生与Mathematica相同的输出

Graphics[Raster[{{{1, 0, 0}, {0, 1, 0}}, {{0, 0, 1}, {1, 1, 0}}}]]

光栅
的文档表明,其参数不是图形指令(例如色调、RGBColor),而是数字-灰度(单个数字)、RGB值(三个数字)、RGBalpha值(四个数字)或灰度alpha值(两个数字)。但是,它提供了自己指定颜色函数的功能,例如:

Graphics[Raster[{{0, 0.2, 0.4}, {0.6, 0.8, 1}}, ColorFunction -> Hue]]
(直接来自v6的文档)