Important: The information in this document is obsolete and should not be used for new development.
MyGetProfile
Color picker-defined subroutine that handles akGetProfile
request.If you create a color picker, it must respond to the
kGetProfile
request code. For color-matching purposes, the Color Picker Manager sends this code to obtain the destination profile used by your color picker. A color picker responds to thekGetProfile
request code by calling a color picker-defined subroutine (for example,MyGetProfile
) to handle the request.
pascal CMProfileHandle MyGetProfile (PickerStorageHndl storage);
storage
- A handle to your color picker's global data.
DISCUSSION
As its function result, yourMyGetProfile
function should return a handle to the destination ColorSync 1.0 profile used by your color picker.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-29 (page 2-45) in Advanced Color Imaging on the Mac OS illustrates how to implement this function.