コード例 #1
0
def cms_get_profile_name(profile):
    """Returns profile name

    :param profile: valid lcms profile handle
    :return: profile name string
    """
    return str(_cms.getProfileName(profile).strip().decode('cp1252'))
コード例 #2
0
ファイル: libcms.py プロジェクト: witwall/uniconvertor
def cms_get_profile_name(profile):
	"""
	This function is given mainly for building user interfaces.
	
	profile - a valid lcms profile handle
	Returns profile name as a string value.	
	"""
	return _cms.getProfileName(profile)
コード例 #3
0
ファイル: libcms.py プロジェクト: wenlibin02/sk1-wx
def cms_get_profile_name(profile):
    """
	This function is given mainly for building user interfaces.
	
	profile - a valid lcms profile handle
	Returns profile name as a string value.	
	"""
    return str(_cms.getProfileName(profile).strip().decode('cp1252'))
コード例 #4
0
def cmsGetProfileName(profile):
    """
	This function is given mainly for building user interfaces.
	
	profile - a valid lcms profile handle
	Returns profile name as a string value.	
	"""
    return _cms.getProfileName(profile)