Package com.lightcrafts.image.export

Examples of com.lightcrafts.image.export.IntegerExportOption


    ExportSizeFields(ImageExportOptions options) {
        final ImageFileExportOptions fileOptions =
            (ImageFileExportOptions)options;

        IntegerExportOption widthOption = fileOptions.resizeWidth;
        IntegerExportOption heightOption = fileOptions.resizeHeight;

        int x = widthOption.getValue();
        int y = heightOption.getValue();

        xText = createTextField(x);
        yText = createTextField(y);

        ratio = x / (double) y;
View Full Code Here

TOP

Related Classes of com.lightcrafts.image.export.IntegerExportOption

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.