Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Node gm 是否具有在保持纵横比的同时调整图像大小(即生成缩略图)的内置支持?或者我应该获取图像大小,计算适当的比例,然后调用调整大小?
这个问题的灵感来自PIL 的类似功能。
乔纳森的评论是解决方案:
gm().resize(maxSize)
这会将图像的大小调整为 width maxSize。请参阅相关文档。
maxSize