How to ID the original photo of a group of edits if all are titled similarl

I am trying to clean out, organize, straighten out my 3000+ photos in iPhoto '08.
Over the years I have made copies and edits of original photos in the Photo Library. Some of those copies I placed in separate albums, but many times I simply made a copy of the original, edited it, and left it there! I now realize that the Photo Library should house only the original, not the edited photos, but this knowledge came late to me. Also: Not only did I edit my original pictures, but I renamed them, and just looking at the new titles is not sufficient info to detect the original.
If I look at the ”i“ button to get into on a picture, would I be correct in assuming that the picture with the biggest KB is the original? Say, if I have five photos of my dog, all edited from one lone photo, and titled 'Cheyenne,' 'Cheyenne in pool,' etc, the one with the most KB or MB is the original? But what if in an edit, I make a picture darker, saturate it with color, and make it denser. Would that not make an edited picture actually ”denser?”
Lorna in Southern California

Lorna
The Original will be the largest file. It's a very solid and sensible rule of thumb and will be correct in about 99.999999% of cases.
But what if in an edit, I make a picture darker, saturate it with color, and make it denser. Would that not make an edited picture actually ”denser?”
No. When you edit a jpeg it is recompressed and it is inevitable that each generation is smaller than the last. In about 99.999999% of cases.
Regards
TD

Similar Messages

  • Having trouble figuring out how to save the original photo after I've cropped it - i.e. I want to create a headshot of my husband from a photo of the two of us, but I also want to keep the original. Seems very basic, but can't seem to figure it out. Any h

    Having trouble figuring out how to save the original photo after I've cropped it - i.e. I want to create a headshot of my husband from a photo of the two of us, but I also want to keep the original. Seems very basic, but can't seem to figure it out. Any help would be great!

    Use File >> Save As
    Choose a different file name so as not to overwrite the original and don't save any changes when closing the original.

  • How to find the original photo behind faces

    How to find the original picture behind Faces

    That is not the original photo - it shows the entire current photo with edits so you can see the context of the face - you can not see the original photo while in faces - you can in edit mode by depressing the shift key
    LN

  • IPhone: How to get the original photo image with  Picker

    Hi!
    I'm trying to pick and send (via HTTP) the original image taken by the camera, the 1,600 x 1,2000 image that's available in iPhoto after syncing.
    As far as I gathered, the UIImage doesn't help me here, since it's scaled down to 640x480, probably to safe memory. But one should supposedly be able to access the underlying CIImage.
    Here's what I'm doing right now:
    I'm setting up an ImagePickerController in my
    - (void)viewDidLoad
    imagePickerController = [[UIImagePickerController alloc] init];
    imagePickerController.delegate = self;
    imagePickerController.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    [self refreshView:self];
    and process the picked image with
    - (void)imagePickerController:(UIImagePickerController )picker didFinishPickingImage:(UIImage )image editingInfo:(NSDictionary )editingInfo
    CGImageRef imgRef = image.CGImage;
    CGFloat owidth = CGImageGetWidth(imgRef);
    CGFloat oheight = CGImageGetHeight(imgRef);
    NSLog(@"Original size = %f %f",owidth,oheight);
    NSData imageData = [NSData dataWithData: UIImagePNGRepresentation(image)];//(image, 1.0)
    However, I still get the following output:
    2008-07-25 11:44:58.543 myApplication[1564:20b] Original size = 640.000000 480.000000
    Obviously still scaled down - but there must be a way to access the original.
    What am I doing wrong?

    Yes, I'm trying on the iPhone, as the camera is unavailable on the simulator.
    Here is the code I'm using:
    // In my main code, to initialise the picker
    UIImagePickerController *picker;
    // Check if camera is available
    if ( ![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] )
    UIAlertView *alertView = [[UIAlertView alloc]
    initWithTitle:@"Can't access camera" message:@"The camera is unavailable!" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil ];
    [alertView show];
    [alertView release];
    return;
    picker = [[UIImagePickerController alloc] init];
    picker.sourceType = UIImagePickerControllerSourceTypeCamera;
    picker.delegate = self;
    [_myView addSubview:picker.view];
    [_myView performSelectorOnMainThread:@selector(setNeedsDisplay) withObject:nil waitUntilDone:NO];
    // The delegate methods
    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo
    NSLog( @"Image dimensions: %fx%f", image.size.width, image.size.height );
    // Remove the picker interface and release the picker object.
    [picker.view removeFromSuperview];
    [picker release];
    - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
    // Remove the picker interface and release the picker object.
    [picker.view removeFromSuperview];
    [picker release];
    }

  • How to get the original query string in an event receiver when dialogs are enabled

    I have scenario where I am adding a document to a document library which has an external data column on it. My goal for this column is to have it automatically populated with an appropriate value based on original query string to the page. The general
    idea is that I am on a custom page that has various webparts on it including a view of my document library that is context sensative based on the query string, and I want to use that context sensitivity not just to filter the list but also when adding documents.
    I have been searching around for solutions to this problem all day and have gotten this far:
    I have an event receiver attached to my document library that handles the ItemAdded event syncronously (as such I have the new list item available to me). In that event receiver I am able to set the column values as required. Where I am stuck is on getting
    the value from the query string that I need to actually set as the column value.
    Based on:
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/thread/8cfcb299-9a55-4139-86ec-0b53b2922a54 and several similar articles/posts I have been able to get the original source Url with the query string I want via the following
    code in my event receiver:
    private HttpContext context;
    public EventReceiver1()
    context = HttpContext.Current;
    public override void ItemAdded(SPItemEventProperties properties)
    var originalQueryString = context.Request.QueryString["Source"];
    // Parse the query string and use the value ...
    The problem is that this solution breaks down if the dialogs are turned on under the advanced settings for the list. The reason the solution fails is because the "Source" query string parameter goes away and is replaced by "IsDlg" set to a value of "1".
    Does anyone know how to get past this hurdle? Any help would be greatly appreciated.

    Hi Stuart,
    The reason I'm looking for "Source" in the query string is because that is something I found to be reliable when the Dialogs are turned off. I've dug around pretty deep in the Request object to see if anything had the data I was looking for and unfortunately
    it doesn't appear to be there. The
    context.Request.QUeryString.ToString()
    returns a rather simple one of:
    List=%7b43ECDCB0-8440-4652-B067-AA20481779D7%7d&RootFolder=&IsDlg=1
    and the
    context.Request.UrlReferrer.Query.ToString()
    has the same value.
    I suspect this is due to the dual step process that takes place in adding an item to a document library where the first modal popup (which I suspect likely has the information I need) gives you the opportunity to browse to your file and then the second
    dialog (maybe this is getting brought up as a result of another request which is now referring back to the original request that brought up the first dialog?) where you edit your properties.
    Thanks for the try though, if you've got anything else I'd love to hear it.

  • Can I delete the original photos that my "non-destrucive" edits were made upon?

    My iPhoto libarary is way larger than it needs to be and having a way to remove the original files the non-destructive edits were made would give me around 15 GB of space back. Is this possible?

    No
    iPhoto is a Digital Assett Manager (DAM) and always keeps the original (the digital negative) - if that is not what you want you need to use a different photo manager
    LN

  • How do i make picture files on my ipod touch 4th generation, without itunes wanting to keep deleting everything in the original photo library.... I was only able to make on and can't remember how, but when I try to sync when touch is hooked up to itunes

    I have had my ipod touch 4th generation for a couple months now.... Nowhere in the manuals or help sections does it tell me how to make individual pucture files(like that already on my computer) put onto my ipod touch.... I managed to make one and I can't remember how I did it but when I have the touch hooked up to itunes and try to pick which picture files from my computer to sync, a box always opens and says that it will delete everything in the original photo library that was in there.....
    Can anyone help me there has to be away, I know someone has done it but they don't live here to show me!!!!
    Please and thanx in advance!!!!!!!

    where on my computer am I suppose to make the individual picture files and have them to upload on my ipod touch.... I do have a photo library on my computer, but in the photo tab in itunes for the ipod touch and there is nothing checked for syncing, cause when I do check it it always says its going to replace everything i have in my photo library on my ipod touch.....  So how am i suppose to have it checked and have it NOT replace pictures on it????
    Also I cannot make more photo albums into my ipod touch, it just replaces the one album every time....
    I am very frustrated cause I have tried the manuals and the apple support help etc and nothing pertains to my exact issue.....
    Please if u could elaberate I would appreciate it alot..... 
    thank u

  • In iPhoto, I want to copy certain photos in an event and then have the copies in another event WITHOUT removing the original photos from their original event; how to do that?

    in iPhoto, I want to copy certain photos in an event and then have the copies in another event WITHOUT removing the original photos from their original event; how to do that?

    The only way to do that is to export the image to a new file and then re-import it.
    It's not really the intended way of working as it uses twice the disk space and is inefficient.
    Use Albums instead. A Photo can be in any number of albums and use no extra disk space as it just simply references the image in the Library. Albums can be sorted any way you want - including manaually - and can have image from anywhere in the Library just by drag and drop.

  • How we can access the original photo  in new photos app ?

    how we can access the original photo or modify photo in new photos app as we do in iPhoto app?
    in iPhoto there is option to revival in finder to see the original and modified photos so can we see the these type photos or revival in finder in new photos app?

    Or Option - drag the photo to the Desktop.

  • How can one remove a raised texture pattern from a scan of the original photo?

    How can one remove a raised texture pattern from a scan of the original photo?
    Have several wedding photos scanned into PS Elements that were printed by the pro, photography studio on a raised pattern paper. Would anyone know how to remove the honey comb type pattern so that the picture canbe printed flat on glossy color photo paper?
    Any help would be greatfully appriciated.
    Thanks,

    The best way to remove a pattern is to use a Fast Fourier Transform.  There's a free plugin (as well as examples and instructions) here:
    http://dl.dropboxusercontent.com/u/6795661/4N6site/improc/fftplugin/examples.htm
    Using the plugin requires editing the individual colour channels, which PSE does not natively allow.  You'll need the reasonably-priced Elements+ addin:
    http://elementsplus.net/
    Here's a crop at 100% of the result I got:
    The pattern is much reduced.  With some experimenting, you can probably do a little better.
    Ken

  • ONCE i made a photo project how do I access the original photos?

    once we make a photo project  how do I access the original photos?

    Do you mean to upload or use in another app or some such?
    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • How long can you revert back to the original photo after cropping?

    Is there any time limit for how long can you revert back to the original photo after cropping? Are you always able to revert back?
    Thanks.

    DAM = "Digital Asset Manager", a fancy name for a filing system.
    iPhoto keeps the original and makes one (usually much smaller) copy based on your edits. It is non-destructive in that if you crop, and later change the color, iPhoto will go back to the original and apply the corrections to get the new image, it will not simply modify the preview.
    If you want a high quality copy of the image, use the export function which allows you to specify the size and compression.

  • How do I find the original photo that is used in one of my contact photo in "Contacts"?

    Hi everyone,
    I am in a bit of a dilemma. I desperately need to find and/or access the original photo used as a contacts photo in the OSX built in app "Contacts". I can resize the photo and I can see it in full but I can't find the original anywhere and in any way.
    I'd really appreciate some help here, as the photo is dear to my heart but seems to have gone missing. It was originally scanned in but isn't showing up where all my scanned photos are saved. Eek!
    If anyone has any pointers on where I could find this photo in its original size, please do share them!
    Ta,
    posies

    Hi DonTimo,
    I've tried doing that, but in the said folder there are only default pictures. I can't find the images of any contacts in the app "Contacts" anywhere. The thread you refered me to and many others that are smilar to it, date back to about 2009-2010.
    Really need this photo.  Any other pointers?

  • How do I stop my original photo from changing after I edit then save it in Raw 7

    How do I stop my original image from changing after I save the edited version in Camera Raw 7. I want to be able to keep the original intact and
    also have the edited version. Also, if I want to work the new edited version in the future I would want to also keep that old version.
    Thanks for your help

    Thanks for this great solution NoelHave a great day and weekend
    Re: How do I stop my original photo from changing after I edit then save it in Raw 7created by Noel Carboni in Photoshop General Discussion - View the full discussion Another way to revert all the saved metadata changes back to defaults is to select the Camera Raw Defaults entry in the Camera Raw fly-out menu... http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6070597-543394/362-482/RevertS ettings.png  -Noel

  • How do I extract original photo date when importing photos?

    Hi,
    I am trying to import photos from a backup CD of pictures that I created in August. However, when I import them into iPhoto, the date that gets associated with the photo is the August date of the CD creation instead of the original photo date.
    I can see the original date of the photo image file, and I want that to be the date that iPhoto uses to organize the photos.
    Is there any preference I can set to extract the date information from the image data itself and NOT from the date stamp on the CD file?
    Thanks!
    Jason
    Message was edited by: JasonGP

    Please don't take the following as a flame...
    <quote>The move option is grayed out when importing from a card to save you from yourself. At least that's what I've always assumed.</quote>
    That's a bit draconian don't you think? Why have the option greyed out if you don't want the user to be able to do this. It's kind of like saying hahah, this is possible to do, but, you, the user, are a moron. Why even place the option on the page in the first place.
    <quote>It just happens to be a bug that few on this forum care to see fixed because most of us feel that using it is unwise due to the danger of lost images and corrupted cards.</quote>
    Again, why put it on page as an option if it weren't intended to be enabled in a plist somewhere for those who wish to be 'unwise.'
    My logic is as follows: If Apple provides software that is more accessible to the 'unwashed masses' (because it's included with Leopard ie. Image Capture) and it deletes images directly from the camera, then why would a professional package (Aperture) limit the so called 'professional' from designing and using his/her own workflow governed by their own experience. Which could include first a backup to dvd or other device of your choice (keyword here: CHOICE) THEN import images and delete directly from the camera. Logically this is completely BACKWARDS, the app available to the 'masses'(Image Capture) should NOT let the user delete images directly from the camera and the 'professional' app (Aperture) should allow more flexibility for the advanced user who understands the implications of his/her work flow and adjusts accordingly.
    Besides, And I quote myself "I have searched the forums here and have only seen people offer advice why this is not good. Not to be an A##, but I don't want advice. I need an answer to my question. How do I enable this functionality?"
    Therefore, respectfully, your answer is: non sequitur.
    Best Regards

Maybe you are looking for

  • Multiple Itune Program accounts

    I'm new to the ipod and iTunes. Can itunes have multiple acounts within its progam for multiple users running it on one computer?? If I have 4 family members and we all have ipods, can itunes have separate accounts for each family member?? How is thi

  • Server 2012 R2 RRAS NAT VPN connectivity issues

    Hello all, I'm having trouble making IKEv2 connections to my VPN server from the Internet after changing my home lab network infrastructure to use Server 2012 R2 RRAS NAT routing. Despite all of the appearances of a proper configuration, it appears t

  • EM dumps

    I was getting below enclosed dumps in EM system.Can someone inform how we remove this issue. Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC ABAP Program           /SAPTRX/SAPLEH_FUNCS Application Component  SCM-EM-MGR-CON

  • How to resolve compatibility of Acrobat 5.0 in Windows 7?

    How can one resolve the issue of Acrobat 5.0 being non compatable with Windows 7?   Is there a work around?

  • Do stored outlines work in Oracle 10.2.0.3?

    I am using 10.2.0.3 on HP UNIX 11i. I set cursor_sharing=force. I created a stored outline using: alter session set create_stored_outlines='CUSTOM'; my sql_statement; When I run the sql statement and verify in v$sql whether outline was used by lookin