图形(2D)中的轴比例相同

时间:2019-08-13 13:28:30

标签: wolfram-mathematica

我试图在使用图形时为两个轴建立相同的比例。我不知道图片的潜在大小(“ plotrange”),因此AspectRatio没有帮助。 ScalingFunctions不能应用于Graphics。有什么等效的吗?

1 个答案:

答案 0 :(得分:0)

像这样?原始矩形图像的比例轴相同。

image = ExampleData[{"TestImage", "Apples"}];
Graphics[{Yellow, Rectangle[{0, 0}, {400, 400}],
  Inset[ImageResize[image, {400, 400}], {0, 0}, {0, 0}, 400]},
 PlotRange -> {{0, 400}, {0, 400}}, ImageSize -> 400,
 Frame -> True]

enter image description here