Is there some way I can programmatically change the users account image on OSX?
I know I can retrieve it, but can it be changed like apple does on the account page in the settings app?
|
|
||||
|
|
|
You can use the Address Book framework. You need to use the
There's more detail here in the docs. |
|||
|
|
|
You can path out to a file and merge it with the current record using the /usr/bin/dsimport command, which could be run from a NSTask. Here is an example of how to do so with BASH as root, this could be done with passed credentials as well
|
||||
|
|
I am almost certain that you can do this through the OpenDirectory interface. See this guide: Basically you have to open a Open Directory Node (say the /Search node), and then find the ODRecord for your user, then use:
on the ODRecord to set the JPEGPhoto attribute. If you query using dscl from the command line for this attribute you will see the attribute's value:
I believe the dscl tool uses the Open Directory framework (or the older/harder to use/deprecated directory service framework) to read and write attributes to user records. You can read and write any other attribute using this tool and the associated framework. I don't see any reason the JPEGPhoto would be any different. The /Search node MIGHT be read only (since it is kind of a meta node). Not really sure. You might have to explicitly open the appropriate node (for example the /Local/Default node) before you can write to the record:
|
|||
|
|