Package org.photovault.dcraw

Examples of org.photovault.dcraw.ColorProfileDesc$CreateProfile


        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

Related Classes of org.photovault.dcraw.ColorProfileDesc$CreateProfile

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.