标签: wolfram-mathematica
我试图在使用图形时为两个轴建立相同的比例。我不知道图片的潜在大小(“ plotrange”),因此AspectRatio没有帮助。 ScalingFunctions不能应用于Graphics。有什么等效的吗?
答案 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]