将 png 图像批量连接到单个文件
我想从多个图像创建纹理图集(图像矩阵)。他们有任何可以创建图像矩阵的苹果脚本吗?
I want create texture atlas(matrix of images) from multiple images.Is their any applescript that can create image matrix.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否看过ImageMagick 工具集?有一个 示例 显示了转换的 -append 和 +append 选项的使用程序显示如何将图像附加到目标图像的行和列中。
Have you looked at the ImageMagick set of tools? There is an example showing the use of the -append and +append options of the convert program that shows how to append images into rows and columns of the destination image.
正如 Jeff 所建议的,ImageMagick 确实是一个很好的解决方案。不过,我建议使用
montage
命令而不是convert
。 Whaleasconvert
允许创建水平或垂直对齐的堆栈,montage
与-tile
开关一起让您创建具有定义的图像矩阵行数和列数。资源:
http://www.imagemagick.org/script/montage.php
http://mariovalle.name/postprocessing/ImageTools.html#assemble
ImageMagick, as suggested by Jeff, really is a good solution. However, I would recommend the
montage
command instead ofconvert
. Whareasconvert
allows for creation of horizontally or vertically aligned stacks,montage
together with the-tile
switch lets you create a matrix of images with a defined number of rows and columns.Resources:
http://www.imagemagick.org/script/montage.php
http://mariovalle.name/postprocessing/ImageTools.html#assemble