Exemplo n.º 1
0
def cms_get_profile_info(profile):
    """Returns profile description info

    :param profile: valid lcms profile handle
    :return: profile description info string
    """
    return str(_cms.getProfileInfo(profile).strip().decode('cp1252'))
Exemplo n.º 2
0
def cms_get_profile_info(profile):
	"""
	This function is given mainly for building user interfaces.
	
	profile - a valid lcms profile handle
	Returns profile description info as a string value.	
	"""
	return _cms.getProfileInfo(profile)
Exemplo n.º 3
0
def cms_get_profile_info(profile):
    """
	This function is given mainly for building user interfaces.
	
	profile - a valid lcms profile handle
	Returns profile description info as a string value.	
	"""
    return str(_cms.getProfileInfo(profile).strip().decode('cp1252'))
Exemplo n.º 4
0
def cmsGetProfileInfo(profile):
    """
	This function is given mainly for building user interfaces.
	
	profile - a valid lcms profile handle
	Returns profile description info as a string value.	
	"""
    return _cms.getProfileInfo(profile)