1. 首页
  2. 编程语言
  3. VB
  4. 把图片保存为 JPG 格式.rar
用户评论
码姐姐匿名网友 2019-09-07 08:09:17

下来用了下还行,但是太复杂了,在其他地方看到有更简单的方法,使用的是批处理bat,更简单一些。 方法一: 将下面的内容用txt写出,再保存成RARJPG+cover.bat ================== :begin @if {%1}=={} @goto end @if NOT "%~x1"==".rar" @goto next @copy /b "%~dp1cover.jpg" + %1 "%~dpn1.jpg" :next @shift @goto begin :end ================