Examples of ColorProfileDesc


Examples of org.photovault.dcraw.ColorProfileDesc

        log.debug( "enter colorProfileComboActionPerformed" );
        int selectedId = colorProfileCombo.getSelectedIndex();
        if ( profiles == null || selectedId < 0 || selectedId >= profiles.length ) {
            return;
        }
        ColorProfileDesc p = profiles[selectedId];
        if ( p != profile ) {
            profile = p;
            ctrl.viewChanged( this, PhotoInfoController.RAW_COLOR_PROFILE );
            if ( rawSettings != null ) {
                RawSettingsFactory f = new RawSettingsFactory( rawSettings );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.