How to backup pictures from 'photo library"

I've been to 3 different stores across the US and no one can answer my questions or just say that my pictures are pretty much lost.
I had a 3G and a 15 MBP that had pictures of my daughter on them at birth. I had to send my MBP back to apple to get fixed and at the time the rep at the store asked if I had backups. I told him the only thing that mattered to me were the pictures on there at the time and that I had a copy of them on my 3G phone and I could synch them to my 17" MBP.
Fast forward, and A) my time machine backup doesn't work from my 15" MBP B) I can't figure out how to get to the pictures to get them off.
Now let me clarify B some.
When I go into the photo albums I have "camera roll" "photo library" "last 12 months" and "last import". I can back up Camera roll to iTunes or download pictures directly from the phone in windows - what I can;t figure out is how to get the pictures out of "photo library". That's where my daughters pictures are.
I have a copy of these pictures on my 3GS phone from previous sync, but the upgrade to the iOS 4 has completely ruined them (the blurry image issue) and the only originals I have left are on the 3G.
I could individually mail each photo to myself if I swapped out my SIM card, but that's a lot of photos to email.. an easier solution would be appreciated.

Photos in the iPhone's Camera Roll, which is where photos that are captured by the iPhone are stored, can and should be imported by your computer as with any other digital camera even though these photos are included with your iPhone's backup which is updated by iTunes as the first step during the iTunes sync process. Not a good idea to depend on your iPhone alone for these photos as with any other digital camera, and the same for the iPhone's backup which stores a significant amount of other data.
Photos in the iPhone's Photo Library include photos that were transferred from your computer to your iPhone only via the iTunes sync/transfer process, which is a one way transfer process only - from your computer to your iPhone. Photos transferred from your computer are not included with the iPhone's backup. These photos should be included with your computer's backup. Photos transferred from your computer are optimized for viewing on the iPhone as part of the iTunes transfer process - the original resolution of these photos is reduced which is why transferring these photos in the opposite direction is not supported.
There are a number of 3rd party paid utilities that provide for transferring these photos in the opposite direction, but the original resolution of these photos will be lost in the process.

Similar Messages

  • How to sync pictures from "Photo Library" on iphone 4 to computer to manage them?

    This is my senerio! I recently got an iPhone 4...before this phone, i had a Droid through Verizon. Yet, this iPhone 4 service is still through Verizon. When i got the iPhone, i wanted all my pictures from my old phone, the Droid, on this iPhone. The people at Verizon transferred them over. Those pictures were put into the "Photo Library" of my iPhone. I only have say...about maybe 200 pictures. They were all duplicated, many many times! So now i have over 800 of the same pictures in my "Photo Library" how do i delete the duplicates?? I've noticed i cannot delete pictures using the trash can through "Photo Library" you have to be in the Camera Roll to do so. Here are my big questions...
    1. How do i delete pictures off my phone through "Photo Library" without deleting them all?!
    2. How do i get the photos from "Photo Library" onto my computer, or iTunes to be able to manage them?!
    I want to pick and choose then delete. I do not want to delete my WHOLE Photo Library.
    Again, remember, i never got these already photos from a computer, i got them from another phone!
    Someone, please help me! This is so ridiculous!

    The photo sync is one way - computer to iphone.
    You ould have to e-mail them to yourself.  When you sync photos to your iphone the current pics will be deleted.
    The iphone is not a storage device, it simply mirrors the selected content of your computer.

  • How to delete duplicate pictures from Photo Library

    How to delete duplicate pictures from Photo Library in iPhone 3G 16 giga?

    The only way to delete photos from the photo library is by the same way the photos were transferred to your iPhone - via the iTunes sync process.
    Are you saying a photo or all photos transferred to your iPhone via the iTunes sync process are duplicated in your iPhone's Photo Library without being duplicated in the folder on your computer where these photos are stored?

  • How do I transfer pictures from Photo library to iPhoto library?

    How do I transfer pictures from Photo library to iPhoto library?

    You do not export to IPhoto - you export to the desktop and then import from there into iPhoto - then delete form the desktop
    two separate steps
    [1] Export from Photos and [2] import into iPhoto
    LN

  • HT204022 The photo stream don't stay in the app,just the camera roll,how erase a picture from photo stream?

    How erase a picture from the photo stream

    Open the photo stream album on your phone, tap Edit, tap all the photos you want to delete, tap Delete.

  • Cannot remove pictures from photo library

    hi everyone... somebody can help me to delete pictures in photo library?

    To remove images in the Photo Library you need to use iTunes.
    iTunes puts those images on the iPhonel it syncs them from a source on your computer.
    So you need to use iTunes to 'unsync' those images to remove them.
    Hope it helps.

  • How to choose a picture from photo library on iPhone ?

    Hi guys,
    I am trying to upload a picture in "Photos"(I mean phone photos library) from the app. Actually I don't know how to code it.
    Can you suggest me for this issue ?
    Thanks in advance.

    Hi Raiden -
    RaidenMAC wrote:
    I am trying to upload a picture in "Photos"(I mean phone photos library) from the app.
    Well this is a 3-part project:
    1) To allow the user to select a photo from the iPhone library, create an instance of [UIImagePickerController|http://developer.apple.com/library/ios/#documentation/ UIKit/Reference/UIImagePickerControllerClass/UIImagePickerController/UIImagePickerController.html%23//appleref/doc/uid/TP40007070]:
    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
    picker.delegate = self;
    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    [self presentModalViewController:picker animated:YES];
    [picker release];
    2) To get the data from the selected photo, implement [imagePickerController:didFinishPickingMediaWithInfo:|http://developer.apple.co m/library/ios/documentation/UIKit/Reference/UIImagePickerControllerDelegateProtocol/UIImagePickerControllerDelegate/UIImagePickerControllerDelegate.html#// appleref/doc/uid/TP40007069-CH3-SW8] in the picker controller's delegate:
    - (void)imagePickerController:(UIImagePickerController *)picker
    didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage* image = [info objectForKey:UIImagePickerControllerOriginalImage];
    NSData *jpegData = UIImageJPEGRepresentation (image, 1.0);
    // dismiss controller and start upload here
    3) Upload the jpeg data. Of course the details will depend on the site (E.g. see [ObjC - Post a UIImage by using NSData and NSURLRequest?|http://stackoverflow.com/questions/743903/objc-post-a-uiimage-by- using-nsdata-and-nsurlrequest]).
    If you've never uploaded image data or an image file to a web site, step 3 is going to be the hardest, and in that case I would rcommend another thread with a title like "How to upload image to URL". Hopefully that will get the attention of programmers who have more experience with that topic than I do. Anyway it's an entirely different subject than you've described in the title of this thread.
    Even if you have experience uploading data, I would recommend working on steps 1 and 2 first. You could check your work by adding these lines to the delegate example above:
    BOOL result = [jpegData writeToFile:@"/Users/Raiden/Picture.jpeg" atomically:NO];
    NSLog(@"jpegData=%@ result=%d", jpegData, result);
    Once you get the desired picture into your test file, you can work on the upload, confident that your source data is correct.
    - Ray

  • How do I delete photo albums from phone and how do I delete pictures from photo library on phone.

    how do I delete photo albums from my phone and how do I delete pictures from library on my phone

    If you sync those album via itunes, then you will need to unsync them via itunes.

  • Is it possible to export pictures from photo library to a notebook or PC?

    I have been tryin to export folders of photos to my new HP notebook computer. I transferred the bulk of photos to a memory storage stick. But I had deleted the photos from my previous Dell Inspiron 1705 computer. When I try to sync up through ITunes, I can't do any exporting of the folders. Can I store them on an internet site? How can ot be done?

    The photos contained in the photo library are not accessible.  These pictures were synced from your computer to your iPhone via iTunes.  They should still exist on your computer.
    The photos in the photo library are a reduced resolution (i.e. not the original photo).
    If you truly do not have the originals and have no backup, you can email those pictures to yourself.  You might also be able to find a solution by searching google.
    There is no Apple/iTunes way to pull the pictures out of the photo library.

  • How to retrieve pictures from photo stream?

    Recently, i imported pictures to my computer but had computer issues.. long story short i lost all my files including the pictures from my ipod touch. i noticed that the same pictures are in my photo stream but i dont know how to retrieve it. i went on icloud.com but i dont know how to get it back

    You can only access photo stream photos from an iOS device or computer that is signed into your iCloud account with photo stream enabled, not from icloud.com.  If the photo stream photos are no longer on any of your devices, you will only get back photos from the last 30 days as older photos are no longer in icloud.
    Camera roll photos are included in your iPod backup.  Restoring the backup should recover them.

  • How can I upload from photo library in my iPhone

    I recently added pictures from my mac (iphoto) back on my phone (after getting a new phone etc.) Now I have pictures in camera roll album, which I understand are the pics I am taking with the phone, then I have photos in the photo library which are photos I imported back from iphoto.
    What I don't understand and need help with is that photos that are in the photo library on my iphone I am not able to upload in say..facebook or instagram.
    Is there a setting I need to turn on? It only gives me an option to choose pictures to upload from the camera roll but not any other folder. HELP!!
    Thanks!

    go to settings > general > usage > music app under the storage section > slide across the bar that says 'photo library' and a red delete button will appear
    you can also plug the device into your computer with itunes, go to the photos tab at the top center and uncheck where it says 'sync photos.' then press 'apply' in the bottom right corner. this will erase the photos that were synced to your phone from the computer

  • HT4972 how do I delete pictures from photo library

    I do I delete phots from the photo library

    To delete photos from your device
    In iTunes, select the device icon in the Devices list on the left. Click the Photos tab in the resulting window.
    Choose "Sync photos from."
    On a Mac, choose iPhoto or Aperture from the pop-up menu.
    On a Windows PC, choose Photoshop Album or Photoshop Elements from the pop-up menu.
    Choose "Selected albums" and deselect the albums or collections you want to delete.
    Click Apply.

  • I have an iPad3. I would like to know how to delete pictures from photos. Please advise.

    How do I delete photos from iPad3?

    Synced photos cannot be deleted on the iPad. Only photos taken with the iPad and transferred with the Camera Connection Kit can be deleted.
    You need to delete the photos in iTunes and sync again.

  • Remove pictures from photo library

    I charged my iphone 4 on my wifes computer a few weeks ago. Now I can't delete her pics off my phone. What should I do?

    When I get on itunes I cant see the photos that were loaded from the other computer. That's why I dont understand whats going on with this phone. I can't select them at all on my computer. I can just see them on my phone.

  • How can I transfer photos from photo library to my computer

    I need help transferring photos from I phone 4 to I phone 5
    I have managed to get all photos from camera roll but not other albums
    Please help me to get the other pictures from photo library
    Thanks
    Tara

    Are these pictures on your iPod no longer stored on your PC or in a backup somewhere?  If so, you'll need the help of third party software to assist you with the task of extracting the photos from your iPod to your PC.  Keep in mind that these synced photos are no longer in their full resolution, but instead are scaled down thumbnails of the original.
    If you stored these photos in full resolution, see this article for instructions on copying them from your iPod back to your PC.
    Use Disk Mode to copy photos from iPod
    Once the photos are on your PC again, you can configure them to sync to your iPhone.
    iOS and iPod: Syncing photos using iTunes
    B-rock

Maybe you are looking for

  • Administrators security group is empty when using WLST in weblogic 10.3.1

    When viewing the members of the "Administrators" group in WLST in weblogic 10.3.1, the list comes back empty. This is not good! "weblogic" is supposed to be a part of this group. In the admin console "weblogic" is listed as part of this group. Here i

  • Wide Screen .DV files show as 4:3 in iDVD 6.0.3

    If I save a project as full quality .dv quicktime from iMovie it plays it in wide format using QT player, but if I drag it to a iDVD project it plays as 4:3 even in a wide format iDVD project. Is this a glitch or am I doing something wrong? Is there

  • Organizer will not load

    PSE 13 Organizer stops loading.  After each reinstall it will work fine for a couple of days then it stops loading, if I reboot the computer it will load again, but only for a day, then stop again and rebooting will not help.  The Organizer shows up

  • Icon on Blackberry

    How do I add a web page icon to my tablet, or place in favorites? Solved! Go to Solution.

  • Something about EAX i discovered 2d

    Ok, so you have a game that uses EAX but you dont here reverb. Well I have BF2 and hear no reverb, well that is until I uped the volume a bit ( well a lot in fact ) and there it was. It was very suttle but was there. I got a slight reverb effect in a