int returnVal = chooser.showOpenDialog(null);
if (returnVal == JFileChooser.APPROVE_OPTION) {
String srcFilename = chooser.getSelectedFile().getAbsolutePath();
chooser.setDialogTitle("Select destination image file");
chooser.setDialogType(JFileChooser.SAVE_DIALOG);
returnVal = chooser.showSaveDialog(null);
if (returnVal == JFileChooser.APPROVE_OPTION) {
String dstFilename = chooser.getSelectedFile().getAbsolutePath();
try {
converter.convertImage(srcFilename, dstFilename);
returnVal = JOptionPane.showOptionDialog(null,