commandArgs.add(destination.getPath());
Process p;
try {
p = Runtime.getRuntime().exec((String[]) commandArgs.toArray(new String[0]));
} catch (IOException e1) {
throw new ImageConversionException("Error converting " + source + " to " + destination, e1);
}
int exitValue;
try {
exitValue = p.waitFor();
} catch (InterruptedException e) {