final Padding padding = new Padding((Integer)padTopSpinner.getValue(), (Integer)padLeftSpinner.getValue(),
(Integer)padBottomSpinner.getValue(), (Integer)padRightSpinner.getValue(), (Integer)padAdvanceXSpinner.getValue());
final int width = (Integer)glyphPageWidthCombo.getSelectedItem();
final int height = (Integer)glyphPageHeightCombo.getSelectedItem();
final GeneratorMethod method;
if (vectorRadio.isSelected())
method = GeneratorMethod.AWT_VECTOR;
else if (drawStringRadio.isSelected())
method = GeneratorMethod.AWT_DRAWSTRING;
else