Questions tagged [iphoto]

iPhoto is an Apple application to view, sort, organize and completely manage one's photos in an iOS device.

iPhoto is an Apple application to view, sort, organize and completely manage one's photos in an iOS device. It provides various features for viewing, categorizing, editing, sharing and controlling the photos in a user-friendly way. iPhoto is a free app, developed and actively maintained by Apple.

65 questions
0
votes
1 answer

No thumbnail in iPhoto for images saved with UIImageWriteToSavedPhotosAlbum

My application downloads JPEG images from the web and save them to the device using UIImageWriteToSavedPhotosAlbum. All works fine except for one issue: when I browse iPhone's photo library with iPhoto, some images have no thumbnails -- an empty…
sgosha
  • 1,299
  • 12
  • 19
0
votes
3 answers

Delete an Image in iPhoto having the Filename (incl. path)

How I can delete an image (move it into the trash) from applescript by giving the filename and path of the image locate on the drive. This script will be started from the shell and may get the (valid) filename including the path (size or other…
OderWat
  • 5,379
  • 3
  • 29
  • 31
0
votes
2 answers

ruby / OS X cannot open existing file in iPhoto Library

env: OSX 10.10 / iPhoto 9.6 / Ruby 2.2 in a ruby script, I am trying to open an xml file from the 'iPhoto Library' to get the album list.. but I got an error : f = File.open(@xmlpath) Errno::ENOENT: No such file or directory @ rb_sysopen -…
user762579
0
votes
1 answer

Develop an iPhoto-like cocoa app for mac OSX

I plan to develop a mac OSX app that has a UI similar to that of iPhoto - a panel on the left and a grid view of images on the right. I am thinking of using NSSplitView to create two panels and using NSCollectionView for the grid. I guess this must…
0
votes
1 answer

AppleScript iPhoto import command (how to deal with duplicates)

I'm trying to fully automate a workflow for getting images into iPhoto. The last piece of the puzzle is handling duplicate images. Currently I see no way in Applescripts import command to not import duplicates. Therefore when a duplicate arrises…
0
votes
1 answer

Overwriting images in iPhoto app

I have a feature in my iOS application. The user has the option to save photo or video to the iPhoto app. When the user presses the 'Save' button, it saves the photo or video again. Is there a way to overwrite the existing file instead of saving it…
Siddharthan Asokan
  • 4,321
  • 11
  • 44
  • 80
0
votes
1 answer

Access "keyword" element of photo within iPhoto - Applescript

I need to access the name property of the keywords for a selection of photos within iPhoto. How can I access the keyword element of those photos? I can get to the properties of the photo but not to the keyword element. I'm new to Applescript so I…
Patrick Veilleux
  • 471
  • 1
  • 4
  • 17
0
votes
2 answers

access music database from cocoa

How do I access the iTunes database from my application. I seems apple can access iphone and itunes from their apps. How do I do the same?
RW.
  • 637
  • 6
  • 14
0
votes
1 answer

Can I programmatically batch-edit iPhoto event titles?

iPhoto said it had to rebuild its database, and afterwards the previous manual sorting of events was all messed up. I tried restoring an older database from backup but iPhoto would just rebuild again, messing it up again. I was able to extract the…
Henrik N
  • 15,786
  • 5
  • 82
  • 131
0
votes
4 answers

Need to know iPhoto Library location programmatically using Applescript

One of my desktop apps I need to know where the iPhoto Library is installed, programmatically. I do not want to pick it from predicted location (/Users/me/Pictures/iPhoto) since power user may have installed it somewhere else. I'm developing app…
Nilay Anand
  • 330
  • 4
  • 17
0
votes
2 answers

Is it possible to change the album of a photo in the camera roll?

I would like to take a photo from the Camera Roll and assign it to a certain album. I don't want to delete the photo, I just want to change that little tiny attribute in which album it belongs. According to the AlAsset Class Reference, photos are…
n.evermind
  • 11,944
  • 19
  • 78
  • 122
0
votes
1 answer

iPhoto images not working in my PHP script

I have created a simple PHP script to crop an image that has been previously uploaded to the server by the user and save it in another folder as some kind of a thumbnail. $src_x = $_POST['left']; // Crop start x $src_y = $_POST['top']; //…
0
votes
1 answer

AppleScript or Automator flow to import photos into iphoto and set album name as files folder name

I store photo files in folders on my computer before i add them into iphoto. I want to add the contents of a selected to folder to iphoto and name the new album as the folder name I have created an automator flow where I do the following (Select…
confidentjohn
  • 125
  • 3
  • 10
0
votes
2 answers

How to access Media section (Photo & Movies) directly from NSOpenPanel in Mac OS X application?

I already refered this link iMedia Now i am using NSOpenPanel to open iPhoto library folder. Here is the code which allow to open. int i = 0; NSOpenPanel* openDlg = [NSOpenPanel openPanel]; [openDlg setCanChooseFiles:YES]; [openDlg…
Solid Soft
  • 1,872
  • 2
  • 25
  • 55
0
votes
2 answers

Accept drag'n'drop from iPhoto or Aperture

I've created an app, containing an ImageView subclass which accepts drag'n'dropping files/folders directly from Finder. The thing is I'm now trying to make it accept photos, either from iPhoto or Aperture, as well. Which PboardTypes should I…
Dr.Kameleon
  • 22,532
  • 20
  • 115
  • 223