博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用mogrify 转化图片格式为RGB
阅读量:6119 次
发布时间:2019-06-21

本文共 2722 字,大约阅读时间需要 9 分钟。

mogrify 下载地址:http://www.imagemagick.org/script/binary-releases.php#windows

cmd执行结果:

 mogrify -colorspace RGB -quality 100 "D:\software\eclipse\workspace2\demo_channel_terminal\src\main\resources\mini.jpg"

说明:最后一个参数是要转化的图片全路径.

 

那么如何使用 来调用呢?

测试代码:

Java代码  
  1. @Test  
  2.         public void test02()  
  3.         {  
  4.             Process p = null;  
  5.             String []command = null;  
  6.   
  7.             command = new String[]{
    "cmd"," /c ","mogrify.exe" ,"-colorspace""RGB""-quality" ,"100" ,"\"D:\\software\\eclipse\\workspace2\\demo_channel_terminal\\src\\main\\resources\\mini.jpg\""};//cmd /c is needed  
  8.             BufferedReader reader = null;  
  9.             try  
  10.             {  
  11.                 p = Runtime.getRuntime().exec(command, null);//)  
  12.                 reader = new BufferedReader(new InputStreamReader(p  
  13.                         .getErrorStream(),"gbk"));  
  14.                 StringBuilder sb = new StringBuilder();  
  15.                 String readedLine = null;  
  16.                 try  
  17.                 {  
  18.                     while ((readedLine = reader.readLine()) != null)  
  19.                     {  
  20.                         sb.append(readedLine);  
  21.                         sb.append("\r\n");  
  22.                     }  
  23.                 }  
  24.                 catch (IOException e)  
  25.                 {  
  26.                     e.printStackTrace();  
  27.                 }  
  28.                 finally  
  29.                 {  
  30.                     try  
  31.                     {  
  32.                         reader.close();  
  33.                         p.destroy();  
  34.                     }  
  35.                     catch (IOException e)  
  36.                     {  
  37.                         e.printStackTrace();  
  38.                     }  
  39.                 }  
  40.                 String content = sb.toString();  
  41.                 System.out.println(content);  
  42.             }  
  43.             catch (IOException e)  
  44.             {  
  45.                 e.printStackTrace();  
  46.             }  
  47.   
  48.         }  

 执行报错:

 'mogrify.exe' 不是内部或外部命令,也不是可运行的程序

或批处理文件。

但是我在命令行里面执行没有问题呀!!!

为什么命令行里面没问题,java调用就有问题呢?

最后找到了原因:java执行本地命令时要指定命令(exe文件)所在路径

String commandFolder="D:\\Program Files\\ImageMagick-6.8.9-Q16\\";

           p = Runtime.getRuntime().exec(command, null,new File(commandFolder/*命令的所在目录*/));//)

           reader = new BufferedReader(new InputStreamReader(p

                   .getErrorStream(),"gbk"));

 

正确的代码如下:

Java代码  
  1. @Test  
  2.         public void test02()  
  3.         {  
  4.             Process p = null;  
  5.             String []command = null;  
  6. //          command = new String[]{"cmd"," /c ","dir"};//cmd /c is needed  
  7.             command = new String[]{
    "cmd"," /c ","mogrify.exe" ,"-colorspace""RGB""-quality" ,"100" ,"\"D:\\software\\eclipse\\workspace2\\demo_channel_terminal\\src\\main\\resources\\mini.jpg\""};//cmd /c is needed  
  8.             BufferedReader reader = null;  
  9.             try  
  10.             {  
  11.                 String commandFolder="D:\\Program Files\\ImageMagick-6.8.9-Q16\\";  
  12.                 p = Runtime.getRuntime().exec(command, null,new File(commandFolder/*命令的所在目录*/));//)  
  13.                 reader = new BufferedReader(new InputStreamReader(p  
  14.                         .getErrorStream(),"gbk"));  
  15.                 StringBuilder sb = new StringBuilder();  
  16.                 String readedLine = null;  
  17.                 try  
  18.                 {  
  19.                     while ((readedLine = reader.readLine()) != null)  
  20.                     {  
  21.                         sb.append(readedLine);  
  22.                         sb.append("\r\n");  
  23.                     }  
  24.                 }  
  25.                 catch (IOException e)  
  26.                 {  
  27.                     e.printStackTrace();  
  28.                 }  
  29.                 finally  
  30.                 {  
  31.                     try  
  32.                     {  
  33.                         reader.close();  
  34.                         p.destroy();  
  35.                     }  
  36.                     catch (IOException e)  
  37.                     {  
  38.                         e.printStackTrace();  
  39.                     }  
  40.                 }  
  41.                 String content = sb.toString();  
  42.                 System.out.println(content);  
  43.             }  
  44.             catch (IOException e)  
  45.             {  
  46.                 e.printStackTrace();  
  47.             }  
  48.   
  49.         }  

  mogrify网盘下载地址:http://pan.baidu.com/s/1i3vHPOh

安装完成之后目录情况:

 

参考:http://iaiai.iteye.com/blog/1461370

注意:

(1)java 执行dir或ipconfig的命令不需要执行命令所在目录,但是执行用户安装上的exe就必须执行命令所在目录;

(2)java执行操作系统命令时一定要加上"cmd  /c"

转载地址:http://zvqka.baihongyu.com/

你可能感兴趣的文章
coco2d-x 基于视口的地图设计
查看>>
C++文件读写详解(ofstream,ifstream,fstream)
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>
Java 内存区域和GC机制
查看>>
更新代码和工具,组织起来,提供所有博文(C++,2014.09)
查看>>
HTML模块化:使用HTML5 Boilerplate模板
查看>>
登记申请汇总
查看>>
Google最新截屏案例详解
查看>>
2015第31周一
查看>>
2015第31周日
查看>>
在使用EF开发时候,遇到 using 语句中使用的类型必须可隐式转换为“System.IDisposable“ 这个问题。...
查看>>
Oracle 如何提交手册Cluster Table事务
查看>>
BeagleBone Black第八课板:建立Eclipse编程环境
查看>>