Important: The information in this document is obsolete and should not be used for new development.
MySetProfile
Color picker-defined subroutine that handles akSetProfile
request.If you create a color picker, it must respond to the
kSetProfile
request code. For color-matching purposes, the Color Picker Manager sends this code to set the destination profile used by your color picker. A color picker responds to thekSetProfile
request code by calling a color picker-defined subroutine (for example,MySetProfile
) to handle the request.
pascal ComponentResult MySetProfile ( PickerStorageHndl storage, CMProfileHandle profile);
storage
- A handle to your color picker's global data.
profile
- A handle to a ColorSync 1.0 profile (that is, a
CMProfile
structure).DISCUSSION
YourMySetProfile
function should set the destination profile to the one specified in theprofile
parameter.Your function should return
noErr
if successful, or an appropriate result code otherwise.SPECIAL CONSIDERATIONS
This version of the Color Picker Manager uses ColorSync 1.0 profiles only. The ColorSync 1.0 profile is a handle-based profile. The profile format is defined by Apple Computer. You cannot use version 2.x profiles, which are identified by profile references, with this version of the Color Picker Manager. ColorSync 1.0 profiles typically reside in the ColorSyncTM Profiles folder (within the Preferences folder of the System Folder). They may also be embedded with the images to which they pertain in graphics files. The appendix "ColorSync Manager Backward Compatibility" in Advanced Color Imaging on the Mac OS provides information about the relationship between the ColorSync Manager version 2.x and ColorSync 1.0 profiles, which you may find useful.SEE ALSO
Listing 2-30 (page 2-45) in Advanced Color Imaging on the Mac OS illustrates how to implement this function.