当前位置: 首页>>代码示例>>Java>>正文


Java ProfileDeferralMgr类代码示例

本文整理汇总了Java中sun.java2d.cmm.ProfileDeferralMgr的典型用法代码示例。如果您正苦于以下问题:Java ProfileDeferralMgr类的具体用法?Java ProfileDeferralMgr怎么用?Java ProfileDeferralMgr使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ProfileDeferralMgr类属于sun.java2d.cmm包,在下文中一共展示了ProfileDeferralMgr类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getData

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Returns a byte array corresponding to the data of this ICC_Profile.
 * @return A byte array that contains the profile data.
 * @see #setData(int, byte[])
 */
public byte[] getData() {
int profileSize;
byte[] profileData;

    if (ProfileDeferralMgr.deferring) {
        ProfileDeferralMgr.activateProfiles();
    }

    PCMM mdl = CMSManager.getModule();

    /* get the number of bytes needed for this profile */
    profileSize = mdl.getProfileSize(cmmProfile);

    profileData = new byte [profileSize];

    /* get the data for the profile */
    mdl.getProfileData(cmmProfile, profileData);

    return profileData;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:26,代码来源:ICC_Profile.java

示例2: getData

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Returns a byte array corresponding to the data of this ICC_Profile.
 * @return A byte array that contains the profile data.
 * @see #setData(int, byte[])
 */
public byte[] getData() {
int profileSize;
byte[] profileData;

    if (ProfileDeferralMgr.deferring) {
        ProfileDeferralMgr.activateProfiles();
    }

    PCMM mdl = CMSManager.getModule();

    /* get the number of bytes needed for this profile */
    profileSize = mdl.getProfileSize(ID);

    profileData = new byte [profileSize];

    /* get the data for the profile */
    mdl.getProfileData(ID, profileData);

    return profileData;
}
 
开发者ID:ZhaoX,项目名称:jdk-1.7-annotated,代码行数:26,代码来源:ICC_Profile.java

示例3: ICC_Profile

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Constructs an ICC_Profile object whose loading will be deferred.
 * The ID will be 0 until the profile is loaded.
 */
ICC_Profile(ProfileDeferralInfo pdi) {
    this.deferralInfo = pdi;
    this.profileActivator = new ProfileActivator() {
        public void activate() throws ProfileDataException {
            activateDeferredProfile();
        }
    };
    ProfileDeferralMgr.registerDeferral(this.profileActivator);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:ICC_Profile.java

示例4: finalize

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Frees the resources associated with an ICC_Profile object.
 */
protected void finalize () {
    if (cmmProfile != null) {
        CMSManager.getModule().freeProfile(cmmProfile);
    } else if (profileActivator != null) {
        ProfileDeferralMgr.unregisterDeferral(profileActivator);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:ICC_Profile.java

示例5: getDeferredInstance

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Constructs an ICC_Profile for which the actual loading of the
 * profile data from a file and the initialization of the CMM should
 * be deferred as long as possible.
 * Deferral is only used for standard profiles.
 * If deferring is disabled, then getStandardProfile() ensures
 * that all of the appropriate access privileges are granted
 * when loading this profile.
 * If deferring is enabled, then the deferred activation
 * code will take care of access privileges.
 * @see activateDeferredProfile()
 */
static ICC_Profile getDeferredInstance(ProfileDeferralInfo pdi) {
    if (!ProfileDeferralMgr.deferring) {
        return getStandardProfile(pdi.filename);
    }
    if (pdi.colorSpaceType == ColorSpace.TYPE_RGB) {
        return new ICC_ProfileRGB(pdi);
    } else if (pdi.colorSpaceType == ColorSpace.TYPE_GRAY) {
        return new ICC_ProfileGray(pdi);
    } else {
        return new ICC_Profile(pdi);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:25,代码来源:ICC_Profile.java

示例6: getDeferredInstance

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Constructs an ICC_Profile for which the actual loading of the
 * profile data from a file and the initialization of the CMM should
 * be deferred as long as possible.
 * Deferral is only used for standard profiles.
 * If deferring is disabled, then getStandardProfile() ensures
 * that all of the appropriate access privileges are granted
 * when loading this profile.
 * If deferring is enabled, then the deferred activation
 * code will take care of access privileges.
 * @see #activateDeferredProfile()
 */
static ICC_Profile getDeferredInstance(ProfileDeferralInfo pdi) {
    if (!ProfileDeferralMgr.deferring) {
        return getStandardProfile(pdi.filename);
    }
    if (pdi.colorSpaceType == ColorSpace.TYPE_RGB) {
        return new ICC_ProfileRGB(pdi);
    } else if (pdi.colorSpaceType == ColorSpace.TYPE_GRAY) {
        return new ICC_ProfileGray(pdi);
    } else {
        return new ICC_Profile(pdi);
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:ICC_Profile.java

示例7: finalize

import sun.java2d.cmm.ProfileDeferralMgr; //导入依赖的package包/类
/**
 * Frees the resources associated with an ICC_Profile object.
 */
protected void finalize () {
    if (ID != 0) {
        CMSManager.getModule().freeProfile(ID);
    } else if (profileActivator != null) {
        ProfileDeferralMgr.unregisterDeferral(profileActivator);
    }
}
 
开发者ID:ZhaoX,项目名称:jdk-1.7-annotated,代码行数:11,代码来源:ICC_Profile.java


注:本文中的sun.java2d.cmm.ProfileDeferralMgr类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。