我想创建一个连接到iPhoto Library的应用程序。所以现在我想从图书馆阅读事件和图片。
是否有优雅/简单的方法来执行此操作,还是必须手动阅读iPhoto用户数据的捆绑结构?
到目前为止,我只找到了一位照片获取者:Is there a UIImagePicker for the Mac Desktop
更新:我找到了另一个相关的SO帖子:Selecting iPhoto images within a cocoa application
答案 0 :(得分:5)
您可以使用NSAppleScript执行此操作。这是我的应用程序的一些复制/粘贴,只是为了表明这个想法而被黑了。
NSAppleEventDescriptor d = .. compile this script ..
@"tell application \"iPhoto\" to properties of albums"
for (int i = 0; i < [d numberOfItems]; i++)
{
NSAppleEventDescriptor *albumDesc = [d descriptorAtIndex:i];
// <NSAppleEventDescriptor: 'ipal'{
// 'ID ':4.265e+09,
// 'purl':'utxt'("http://www.flickr.com/photos/..."),
// 'pnam':'utxt'("Vacation"),
// 'alTy':'pubs',
// 'alCh':[ ],
// 'alPx':'msng' }>
NSString *albumName = [[albumDesc descriptorForKeyword:'pnam'] stringValue];
NSString *albumId = [[albumDesc descriptorForKeyword:'ID '] stringValue];
你可以做同样的事情来找到图像
NSString *scp =
[NSString stringWithFormat:@"tell application \"iPhoto\" to properties of photos of album id %@",
[album objectForKey:@"id"]];
NSAppleEventDescriptor *d = ... compile scp ...
// 1 based!?
for (int i = 1; i <= [d numberOfItems]; i++)
{
NSAppleEventDescriptor *photoDesc = [d descriptorAtIndex:i];
// Yes.. this happens. Not sure why?!
if (!photoDesc)
continue;
// <NSAppleEventDescriptor: 'ipmr'{
// 'pnam':'utxt'("IMG_0058.JPG"),
// 'pwid':768,
// 'pdim':[ 768, 1024 ],
// 'alti':1.79769e+308,
// 'filn':'utxt'("3133889525_10975ba071_b.jpg"),
// 'ipth':'utxt'("/Users/lagnat/Pictures/iPhoto Library/Masters/2010/11/10/20101110-002341/3133889525_10975ba071_b.jpg"),
// 'idat':'ldt '($F57C69C500000000$),
// 'rate':0,
// 'titl':'utxt'("IMG_0058.JPG"),
// 'phit':1024,
// 'itpt':'utxt'("/Users/lagnat/Pictures/iPhoto Library/Thumbnails/2010/11/10/20101110-002341/3133889525_10975ba071_b.jpg.jpg"),
// 'ID ':4.295e+09,
// 'lati':'msng',
// 'pcom':'utxt'(""),
// 'opth':'utxt'("/Users/lagnat/Pictures/iPhoto Library/Masters/2010/11/10/20101110-002341/3133889525_10975ba071_b.jpg"),
// 'lngt':'msng',
// 'tiln':'utxt'("3133889525_10975ba071_b.jpg.jpg") }>
NSString *path = [[photoDesc descriptorForKeyword:'ipth'] stringValue];
NSString *imgname = [[photoDesc descriptorForKeyword:'pnam'] stringValue];
答案 1 :(得分:1)
如果在App Store上发布应用程序,现在需要使用Sandbox,这会阻止以前的AppleScript方法工作(iPhoto应用程序启动但返回空集)。
iPhoto图库包含一个包含照片,数据库和XML文件的目录结构。内容随每个版本的iPhoto而变化,因此如果手动访问这些文件,请小心。
如果您只想要相册详细信息,可以解析文件AlbumData.xml
如果您想要照片,可以浏览Masters文件夹。文件结构遵循日期而不是iPhoto中配置的集合。
可以在iPhoto图库的内部找到更多信息: http://www.fatcatsoftware.com/iplm/Help/iphoto%20library%20internals.html
大多数数据库都是SQLite格式,因此可以通过Objective C以编程方式访问,但是您可以期望在不同版本的iPhoto之间进行架构更改。感兴趣的主要数据库是Library.apdb和Database / apdb中的Properties.apdb。
如果你仍想使用Apple Script方法,这里是包含Apple脚本执行部分的上一个答案的版本:
NSAppleScript *script = [[NSAppleScript alloc] initWithSource:@"tell application \"iPhoto\" to properties of albums"];
NSAppleEventDescriptor *d = [script executeAndReturnError:nil];
NSLog(@"photo library count: %ld", (long)[d numberOfItems]);
for (int i = 0; i < [d numberOfItems]; i++)
{
NSAppleEventDescriptor *albumDesc = [d descriptorAtIndex:i];
NSString *albumName = [[albumDesc descriptorForKeyword:'pnam'] stringValue];
NSLog(@"%@", albumName);
}