Commit 56c98241 authored by xiaosl's avatar xiaosl

xml解析

parent 003d8bf7
...@@ -16,5 +16,13 @@ ...@@ -16,5 +16,13 @@
<module>rs-datacenter-api</module> <module>rs-datacenter-api</module>
<module>rs-datacenter-server</module> <module>rs-datacenter-server</module>
</modules> </modules>
<dependencies>
<dependency>
<groupId>org.gdal</groupId>
<artifactId>gdal</artifactId>
<version>1.11.2</version>
</dependency>
</dependencies>
</project> </project>
\ No newline at end of file
package com.upyuns.platform.rs.datacenter.utils.gdal;
public class ImageOperateTools {
/**
* tif 文件转 为png文件
* @param inputPath
* @param outputPath
* @return
*/
public static Boolean tif2Png(String inputPath, String outputPath) {
return true;
}
/**
*
* @param inputPath
* @param outputPath
* @return
*/
public static Boolean tif2Jpeg(String inputPath, String outputPath) {
return true;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment