Package org.bric.imageEditParameters

Examples of org.bric.imageEditParameters.OutputParameters


        this.startIndexSpinner.getModel().setValue(startIndex);
    }

    @Override
    public OutputParameters getImageEditParameters() {
        OutputParameters outputParameters = new OutputParameters();
        outputParameters.setOutputPath(outputPathText.getText());
        outputParameters.setQuality((float)qualitySlider.getValue()/100);
        outputParameters.setOutputFormat(fileTypeCombo.getSelectedItem().toString());
        outputParameters.setNumberingStartIndex((Integer)startIndexSpinner.getValue());
//        outputParameters.setDpiHorizontal((Integer) jSpinner2.getValue());
//        outputParameters.setDpiVertical((Integer) jSpinner3.getValue());
        return outputParameters;
    }
View Full Code Here

TOP

Related Classes of org.bric.imageEditParameters.OutputParameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.