Java-AffineTransform API:将图像缩放到最大 300*100 像素?
我知道可以进行简单的缩放,但是如何将图像缩放到最大 300*100 像素?我搜索了 AffineTransform API 类,但找不到相应的方法。
提前谢谢
I know to do simple scaling, but how can i scale an image to a maximum of 300*100 pixels? i searched the AffineTransform API class but couldn't find a method for this.
thx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您需要通过计算什么比例将使您的高度达到 300 像素,宽度达到 100 来“回到”您的比例因子。
但是像这样的东西
不会均匀地缩放它。为此,您需要对 x 和 y 使用相同的比例。因此,如果您想确保图像适合屏幕/显示器/页面,您将采用最宽的尺寸比例。
所以使用上面的例子...
这只是一个建议,希望它有所帮助。
I think you would need to "back into" your scale factor by figuring what scale will get your height to 300 pixels and your width to 100.
Something like
This will not scale it uniformly though. To do that you need to use the same scale for x and y. So if you are trying to ensure your image fits on a screen/display/page you would take the widest dimension's scale.
so to use the above example...
This is just a suggestion though, hope it helps.
根据相对于目标宽度/高度的图像宽度/高度计算变换因子。
编写一些代码,如果遇到问题,请提出具体问题。
Calculate the factors for the transform based on the image width/height relative to the target width/height.
Write some code and if you hit a problem, ask a specific question.