Graphics as Input
Graphics as Input
An image is equivalent to its symbolic expression. You can operate on an image as you would on a symbolic expression.
Graphics[Table[{RGBColor[i / 2, .7, j / 2], Disk[{2 i, 2j}]}, {i, 0, 2}, {j, 0, 2}]]Type // InputForm after the graphic to get the symbolic expression that corresponds to the graphic:
Graphics[Table[{RGBColor[i / 2, .7, j / 2], Disk[{2 i, 2j}]}, {i, 0, 2}, {j, 0, 2}]][image]//InputFormType a Wolfram Language Replace command after the output graphic and evaluate:
[image] /. Disk -> Rectangle