@param args
(String[] args)
| 331 | * @param args |
| 332 | */ |
| 333 | public static void main(String[] args) { |
| 334 | GDALtest test = new GDALtest(); |
| 335 | if (args.length >= 1) |
| 336 | { |
| 337 | BufferedImage tmpImage = test.openFile(new File(args[0])); |
| 338 | test.setImage(tmpImage); |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | } |