Project1

标题: 提问,XP行走图批量转VA [打印本页]

作者: pokemonjs    时间: 2015-5-19 22:44
标题: 提问,XP行走图批量转VA
XP行走图批量转VA的,怎么做?只能用PS一个一个的处理?有什么工具么?谢谢!~
作者: 喵呜喵5    时间: 2015-5-19 22:52
本帖最后由 喵呜喵5 于 2015-5-19 23:05 编辑

试试这个?

https://rpg.blue/thread-375735-1-1.html
作者: pokemonjs    时间: 2015-5-19 23:11
喵呜喵5 发表于 2015-5-19 22:52
试试这个?

https://rpg.blue/thread-375735-1-1.html

谢谢你!~不过我是个新手,不太理解如何使用,可否私信告诉我下?谢谢你!~
作者: 喵呜喵5    时间: 2015-5-19 23:12
pokemonjs 发表于 2015-5-19 23:11
谢谢你!~不过我是个新手,不太理解如何使用,可否私信告诉我下?谢谢你!~ ...

请参考脚本开头的注释,或者 @VIPArcher
作者: tan12345    时间: 2015-5-19 23:49
ps有个功能叫批量处理
作者: VIPArcher    时间: 2015-5-20 09:51
本帖最后由 VIPArcher 于 2015-5-22 12:14 编辑

你需要一个Bitmap#save_png才能使用这个脚本。
Bitmap#save_png脚本在这里的范例里可以找到https://rpg.blue/thread-377103-1-1.html
把要转化为VA用的行走图全部放在Graphics/XP_Characters文件夹里,
然后运行转化行走图的工程。就会自动批量转化为VA用的行走图并在文件名前面加上"$"保存在Graphics/Characters文件夹下。
RUBY 代码复制
  1. Dir["Graphics/XP_Characters/*.png"].each do |path|
  2.   filename = File.basename(path, ".png")
  3.   next if FileTest.directory?(filename)
  4.   bitmap = Bitmap.new(path)
  5.   width, height = bitmap.width / 4 * 3, bitmap.height
  6.   src_rect = Rect.new(bitmap.width / 4, 0, width, height)
  7.   new_bitmap = Bitmap.new(width, height)
  8.   new_bitmap.blt(0, 0, bitmap, src_rect)
  9.   new_bitmap.save_png("Graphics/Characters/$#{filename}.png")
  10.   p '=*' * 30
  11.   p "行走图:#{path}"
  12.   p '已转为VX/VA的行走图并输出到'
  13.   p "Graphics/Characters/$#{filename}.png"
  14. end
  15. msgbox '素材转化结束'
  16. exit

做了个范例,你可以直接用

XP行走图批量转VA工具.rar

1.23 MB, 下载次数: 224


作者: tseyik    时间: 2015-5-20 10:16
本帖最后由 tseyik 于 2015-5-20 10:29 编辑

http://diamond.iza-yoi.net/script/03_vxa/vxa_sc_char_xps.htm
直接在VA使用XP的行走圖脚本

XP行走圖文件名的前面加上『!XP』


作者: 日月星辰    时间: 2015-5-20 14:53
地球村 置顶帖:
[周边工具] RM周边工具集【2012年4月15日更新】
https://rpg.blue/thread-128922-1-1.html

RPGツクールVX キャラチップコンバーター

搜索这个即可。

============


把RM2K、RM2K3及RMXP的行走图转换成RMVX的行走图格式。日文软件,没见过有汉化版本- -所以操作需要自己多动手试几次。(这句话怎么这么熟- -b)虽然RMVX的默认风格行走图有一种掌机的感觉,但貌似多数使用者还是喜欢RMXP的行走图。这款软件就免除了PS批处理的麻烦。
日文版下载页面:http://www.vector.co.jp/soft/winnt/game/se441834.html
分流:http://115.com/file/dpyceclj#
英文版下载地址:http://rpg.blue/upload_program/files/ccrpgvx_204E_90946692.zip
分流:http://115.com/file/an43vjt3#




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1