Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/image/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/image-processing/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Image 多个文件的泛洪填充_Image_Image Processing_Batch File_Bitmap - Fatal编程技术网

Image 多个文件的泛洪填充

Image 多个文件的泛洪填充,image,image-processing,batch-file,bitmap,Image,Image Processing,Batch File,Bitmap,我有几百个位图文件,我想对其进行整体填充以更改其中一种颜色。有没有什么程序可以让我这样做,或者让我写一个脚本来做这种处理 谢谢, 凯文看一看graphicsmagick 用这样的东西 for %%f in (*.bmp) do ( gm convert -draw "fill yellow ; color 0,0 floodfill" %%f %%~nf.new.bmp ) 谢谢你的链接,我已经下载了这个程序,将尝试一下。

我有几百个位图文件,我想对其进行整体填充以更改其中一种颜色。有没有什么程序可以让我这样做,或者让我写一个脚本来做这种处理

谢谢,
凯文

看一看graphicsmagick

用这样的东西

 for %%f in (*.bmp) do (
   gm convert -draw "fill yellow ; color 0,0 floodfill" %%f %%~nf.new.bmp
 )

谢谢你的链接,我已经下载了这个程序,将尝试一下。