File size changes after importing photos

Quick question here. I've been using iphoto (now using iphoto 8)for a couple years and just noticed that after importing photos (I use a variety of original formats, usually jpeg or raw) the file size in iphoto is a lot smaller than the original (roughly half). First of all, why is this? Is there any way for iphoto to retain the original size? If I try copying a photo out of iphoto, say onto my desktop, the file size remains the same as it was in iphoto. In other words, it doesn't revert back to the original.
Any idea as to why it would do this?
Some help would be much appreciated.
Ads

Welcome to the Apple Discussions. When a raw file is imported iPhoto creates a jpg version so if you're looking at that and comparing to the size of the raw file, yes it will be smaller.
If you edit a photo the resulting file will be slightly smaller since there will be one level of jpeg compression added to the file. All subsequent edits will not cause any more compression because the edit instructions are saved in the database file and applied to the file for viewing, printing and exporting. That's why iPhoto calls it nondestructive editing.
If the photo is portrait oriented and comes from a camera which has the auto-rotate feature iPhoto will create a rotated version and that will contain some jpeg compression.
Dragging the photo to the desktop will bring the edited version which will be smaller. To get the original file export using the Format=Original setting as Larry has already pointed out.
If you're worried about image quality unless you will be printing a very large photo you'll be hard pressed to see any degradation in the image.
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
NOTE: iPhoto 8's new option in it's rebuild library window, "Rebuild the iPhoto Library Database from automatic backup" may make this tip obsolete. We'll know when users have occasion to use it and see if that's the case.

Similar Messages

  • File size changes after color adjustments

    Anytime I adjust/edit a photo in iPhoto it results in a saved image that's half the size of my original. I wanted to bump the contrast and print a photo, but the image goes from 4MB to 2MB after a simple color adjustment. Does anyone know how to stop this?

    Is there anyway to save the copy without a loss in file size
    No. Like I said, it's in the nature of jpegs. Jpeg is a lossy format.
    It seems to be an iphoto issue rather then a jpeg issue.
    Don't think so.
    When I make adjustments to a jpeg in photoshop and save it, the file size is not effected.
    Where are you seeing that reported? I just auto-coloured a jpeg with CS4 and saved it at 9 on Photoshops scale of 12 and the file size reported in the FInder went from 4.5MB to 1.1.
    Regards
    TD

  • XML File size changed

    Hi, All:
    I wondering why the XML file size changed after go through DB using CLOB. The original size is 1KB, but after I use the PUT and GET method, the size changed to 8KB. There is a lot of space appened to the content.
    Thanks a lot!

    Can you provide an example of the code you are using for the put / get method. In SQL*PLUS I do not see what you are talking about
    SQL> create or replace directory xmltemp as 'c:\temp'
      2  /
    SQL> drop table xmltest
      2  /
    SQL> host dir c:\temp\testcase.xml
    Volume in drive C has no label.
    Volume Serial Number is 8CC2-E429
    Directory of c:\temp
    02/01/2006  04:48 AM             1,174 testcase.xml
                   1 File(s)          1,174 bytes
                   0 Dir(s)  23,780,163,584 bytes free
    SQL> --
    SQL> host type c:\temp\testcase.xml
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xfiles:8080/home/SCOTT/poSource/x
    sd/purchaseOrder.xsd">
            <Reference>EABEL-20030409123336251PDT</Reference>
            <Actions>
                    <Action>
                            <User>EZLOTKEY</User>
                    </Action>
            </Actions>
            <Reject/>
            <Requestor>Ellen S. Abel</Requestor>
            <User>EABEL</User>
            <CostCenter>R20</CostCenter>
            <ShippingInstructions>
                    <name>Ellen S. Abel</name>
                    <address>300 Oracle Parkway
    Redwood Shores
    CA
    94065
    USA</address>
                    <telephone>650 506 7300</telephone>
            </ShippingInstructions>
            <SpecialInstructions>Counter to Counter</SpecialInstructions>
            <LineItems>
                    <LineItem ItemNumber="1">
                            <Description>Samurai 2: Duel at Ichijoji Temple</Description>
                            <Part Id="37429125526" UnitPrice="29.95" Quantity="3"/>
                    </LineItem>
                    <LineItem ItemNumber="2">
                            <Description>The Red Shoes</Description>
                            <Part Id="37429128220" UnitPrice="39.95" Quantity="4"/>
                    </LineItem>
                    <LineItem ItemNumber="3">
                            <Description>A Night to Remember</Description>
                            <Part Id="715515009058" UnitPrice="39.95" Quantity="1"/>
                    </LineItem>
            </LineItems>
    </PurchaseOrder>
    SQL> --
    SQL> create table xmltest of xmltype
      2  /
    SQL> insert into xmltest values (xmltype(bfilename('XMLTEMP','testcase.xml'),nls_charset_id('AL32UTF8'),null,1,1))
      2  /
    SQL> commit
      2  /
    SQL> select dbms_lob.getLength(value(x).getClobVal())
      2    from xmltest x
      3  /
                                         1193
    SQL> set long 100000
    SQL> set echo off
    SQL> set pages 0
    SQL> set lines 150
    SQL> set heading off
    SQL> set feedback off
    SQL> set trimspool on
    SQL> spool c:\temp\testcase.xml.out
    SQL> --
    SQL> select object_value
      2    from xmltest
      3  /
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xfiles:8080/home/SCOTT/poSource/x
    sd/purchas
    eOrder.xsd">
      <Reference>EABEL-20030409123336251PDT</Reference>
      <Actions>
        <Action>
          <User>EZLOTKEY</User>
        </Action>
      </Actions>
      <Reject/>
      <Requestor>Ellen S. Abel</Requestor>
      <User>EABEL</User>
      <CostCenter>R20</CostCenter>
      <ShippingInstructions>
        <name>Ellen S. Abel</name>
        <address>300 Oracle Parkway
    Redwood Shores
    CA
    94065
    USA</address>
        <telephone>650 506 7300</telephone>
      </ShippingInstructions>
      <SpecialInstructions>Counter to Counter</SpecialInstructions>
      <LineItems>
        <LineItem ItemNumber="1">
          <Description>Samurai 2: Duel at Ichijoji Temple</Description>
          <Part Id="37429125526" UnitPrice="29.95" Quantity="3"/>
        </LineItem>
        <LineItem ItemNumber="2">
          <Description>The Red Shoes</Description>
          <Part Id="37429128220" UnitPrice="39.95" Quantity="4"/>
        </LineItem>
        <LineItem ItemNumber="3">
          <Description>A Night to Remember</Description>
          <Part Id="715515009058" UnitPrice="39.95" Quantity="1"/>
        </LineItem>
      </LineItems>
    </PurchaseOrder>
    SQL> spool off
    SQL> --
    SQL> set echo on
    SQL> host dir c:\temp\testcase.xml.out
    Volume in drive C has no label.
    Volume Serial Number is 8CC2-E429
    Directory of c:\temp
    06/11/2006  01:53 PM             1,313 testcase.xml.out
                   1 File(s)          1,313 bytes
                   0 Dir(s)  23,780,163,584 bytes free
    SQL> --
    SQL> host type c:\temp\testcase.xml.out
    SQL> --
    SQL> select object_value
      2    from xmltest
      3  /
    <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xfiles:8080/home/SCOTT/poSource/x
    sd/purchas
    eOrder.xsd">
      <Reference>EABEL-20030409123336251PDT</Reference>
      <Actions>
        <Action>
          <User>EZLOTKEY</User>
        </Action>
      </Actions>
      <Reject/>
      <Requestor>Ellen S. Abel</Requestor>
      <User>EABEL</User>
      <CostCenter>R20</CostCenter>
      <ShippingInstructions>
        <name>Ellen S. Abel</name>
        <address>300 Oracle Parkway
    Redwood Shores
    CA
    94065
    USA</address>
        <telephone>650 506 7300</telephone>
      </ShippingInstructions>
      <SpecialInstructions>Counter to Counter</SpecialInstructions>
      <LineItems>
        <LineItem ItemNumber="1">
          <Description>Samurai 2: Duel at Ichijoji Temple</Description>
          <Part Id="37429125526" UnitPrice="29.95" Quantity="3"/>
        </LineItem>
        <LineItem ItemNumber="2">
          <Description>The Red Shoes</Description>
          <Part Id="37429128220" UnitPrice="39.95" Quantity="4"/>
        </LineItem>
        <LineItem ItemNumber="3">
          <Description>A Night to Remember</Description>
          <Part Id="715515009058" UnitPrice="39.95" Quantity="1"/>
        </LineItem>
      </LineItems>
    </PurchaseOrder>
    SQL> spool off
    SQL> --
    SQL>
    SQL>Also, if I do a WebDav or FTP put/get I do not see a problem either.
    C:\TEMP>ftp
    ftp> open localhost 2100
    Connected to mdrake-lap.
    220- mdrake-lap
    Unauthorised use of this FTP server is prohibited and may be subject to civil and criminal prosecution
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database) ready.
    User (mdrake-lap:(none)): scott
    331 pass required for SCOTT
    Password:
    230 SCOTT logged in
    ftp> cd /public/testdir
    250 CWD Command successful
    ftp> rm testcase.xml
    550 /public/testdir/testcase.xml : Not a directory.
    ftp> del testcase.xml
    250 DELE Command successful
    ftp> put testcase.xml
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 1174 bytes sent in 0.02Seconds 73.38Kbytes/sec.
    ftp> ls -l
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r--   1 SCOTT    oracle      1174 JUN 11 11:01 testcase.xml
    226 ASCII Transfer Complete
    ftp: 68 bytes received in 0.01Seconds 4.53Kbytes/sec.
    ftp> get testcase.xml testcase.xml.out
    200 PORT Command successful
    150 ASCII Data Connection
    226 ASCII Transfer Complete
    ftp: 1174 bytes received in 0.00Seconds 1174000.00Kbytes/sec.
    ftp> !dir testcase.xml
    Volume in drive C has no label.
    Volume Serial Number is 8CC2-E429
    Directory of C:\TEMP
    02/01/2006  04:48 AM             1,174 testcase.xml
                   1 File(s)          1,174 bytes
                   0 Dir(s)  23,780,032,512 bytes free
    ftp> !dir testcase.xml.out
    Volume in drive C has no label.
    Volume Serial Number is 8CC2-E429
    Directory of C:\TEMP
    06/11/2006  02:01 PM             1,174 testcase.xml.out
                   1 File(s)          1,174 bytes
                   0 Dir(s)  23,780,032,512 bytes free
    ftp> quit
    221 QUIT Goodbye.
    C:\TEMP>

  • I'm no longer able to select the file size when emailing a photo. How can I solve this? iPhone 4S with iOS 7.1.1

    I'm no longer able to select the file size when emailing a photo. How can I solve this? iPhone 4S with iOS 7.1.1. Thanks a lot.

    Yeah - I tried that, several times; each time I get "iTunes is restoring the software on this iPhone" and after about 30 minutes the screen on the phone lights up again with the same screen I had before.  After that ... nothing.

  • HT1229 How do I reduce the size of photo in iPhoto?  The size of my imported photos are 2 - 3 MB and for my purpose I need 200 - 400 KB.  Any suggestions appreciated.

    How do I reduce the size of photo in iPhoto?  The size of my imported photos from my camera are 2 - 3 MB and for my purpose I need 200 - 400 KB.   Scanned copies of older photographs with a size of 100 to 500 KB work very well.  Any help is greatly appreciated. 

    File -> Export and make your choices in the Export dialogue.
    Jpeg Quality and Size will have most effect on file size. Note that 'Size' refers to the pixel dimensions of the photo.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • Maximum File Size of .dv Import File to Premiere Pro CS5?

    Hello Community:
    I searched this forum and Google in general, but could not find an absolute limit on the media file size I can import into a Premiere Pro CS5 project.  I'm scheduled to process the ".DV" recording from a conference, which could go on for hours.  I have asked the camera man to break up the recording in one-hour segments, but I'm getting some push-back.
    Is there a specific size limitation on importing an NTFS file structure .dv file in Premiere Pro CS5?
    Thanks,
    Rich Locus

    Same issue. I previously used  NeoScene to convert .mov files from a Canon 5d mark ii to the easier to edit with Gopro Cineform .avi format in Premiere Pro CC. They used to work fine but now Premiere only recognizes a very small part of the file. The first 18 seconds of an 8 minute file.
    I tried importing the file to a new clean scene and the problem remained.
    I need to be able to work with this footage. Somehow Premiere is no longer able to properly read clips it used to be able to read.
    I would like to hear something from Adobe on this issue.
    EDIT: I just updated my GoPro software to 2.0 and the problem was instantly solved. The same might apply to TechSmith.
    EDIT 2: Upon rendering the edit I discovered that while the entire length of the clip was represented it in fact stopped playing new frames at the same frame as it had before. So no luck. Updating GoPro Cineform made the length of the file display correctly (7min) but did not actually let me play the file beyond the first 18 seconds - it just showed the same frame.
    I deleted all preview files and cleaned Media Cache files (under media/preferences) - this didn't help.
    Finally I made the file offline, closed Premiere, changed the file name and re-opened Premiere. Then I right clicked over the file in the Project window and chose replace file to re-connect. The file finally came in correctly. I've now rendered it and it runs through the entire 7 min.
    Message was edited by: ereitz

  • Files get corrupted after import-export

    Hi
    After exporting images from HTML DB 2.0 and importing them some of the files are corrupted after import.
    This has happened with one .js file and with one .pdf file.
    All the other (including some PDF-s) are correct.
    The "File Character Set" specified on import is correct and there are no other parameters I can change.
    If I look the contents of corrupted files it seems that another file has been pasted at the end of the original file.
    What could be wrong?

    Hello,
    Any news on this ? I have the same (reproducable) problem with a .js file.
    Uploading works fine, but when I try to download it again, the contents of another file seems to have been appended at the end. The file also doesn't work when I try to include it using #WORKSPACE_IMAGES#...js
    Matthias

  • All of a sudden my RAW (Nikon D7100) files are dark after importing

    Could anyone tell me why all of a sudden my NEF files from my Nikon D7100 raw files turn dark after importing them to Lightroom 4.4? I did use Dactive lighting setting in camera...is this why? Is there anyway to stop this from happening? THanks!

    dj_paige wrote:
    I would turn off the D-active lighting
    I can't argue with that.
    dj_paige wrote:
    it does not help eith raw images.
    That would be truer if stated thusly:
    Having ADL on will make for darker initial rendering in Lightroom and reveal non-optimal ADL setting as under-exposed images.
    However (and contrary to popular belief), that does NOT mean there is no value using ADL in conjunction with Lightroom for post-processing - quite the contrary: there are ALL the same benefits as when using ADL in conjunction with NX2, *except* that the compensations are applied automatically in NX2, and non-optimal setting manifests as a slight reduction in shadow image quality and not as under-exposed images when using NX2 instead of Lightroom for post-processing.
    Rob

  • After copying a file from NTFS to HFS volume, file size changed when viewing in Windows

    Hi guys,
    I have a Mac Air running Mavericks on a HFS partition and Windows 7 on a BOOTCAMP NTFS partition. I have some files that I want to read/write from/to both systems. Since OS X can't write NTFS and Windows can't write HFS either, and I don't want to use any 3rd-party tools/drivers, I have to adopt a "stupid" way: in OS X, I copy those files from NTFS to its HFS partition, make changes, then switch to Windows and sync them back to NTFS.
    The problem is, after I copied a file from NTFS to HFS in OS X, it seemed ok. But when I switched to Windows, the very copied file in HFS partition had its size changed (bigger) although I didn't make any changes to it in OS X yet. This happens to almost every file I copied, text and binary. For those text files, I tried to open it with EditPlus in Windows and EditPlus reports the correct size on the status bar.
    How could this happen?

    I am not sure if this is what your seeing but...
    The same unaltered file on two different volumes might use different amounts of disk space. This is because a 'disk' is divided in to 'blocks' and a block (also historically known as a 'sector') is a certain minimum size. So if disk-1 has a block size of 512 bytes and disk-2 has a block size of 1024 bytes then a file containing just 10 bytes will use up twice as much space on disk-2 as disk-1 even though it is the exact same file.
    Beyond that, Macs can add additional information like Spotlight tags, labels, icons, etc. which make a file bigger. If you are modifying a file then presumably that also implies adding additional content e.g. for a Word document more text and this will make it bigger. Also depending on some programs are configured or designed 'deleting' text may only mark it as deleted and not really delete. This can apply to older versions of Word which has a 'Fast Save' feature, new versions have removed this and do a proper delete.
    You would have to give more details like what you are doing to the document, what kind of document, and what the two sizes are.
    Finally, there is one other potential difference, some systems and manufacturers use 1024 as a unit for measuring file and disk sizes, some use 1000. It will be the same number of bytes in each case but 1000 bytes in one case would exactly equal 1MB, and in the other it would be 0.9765MB.

  • File size changing when pass through after effects  (180Mb file goes in and comes out 33GB on export)

    im processing a video recorded of an  interview where the lighting was not very good on the interviewee
    im brightening up the light on the interviewees face
    the file was a 180Mb  H.264 file on import 
    when i export the file its coming out at 33GB in size.... im not sure why this is
    i have chosen the default setting "lossless" as the format for export
    i just want the file to export the same size and quality as it was when i imported it
    what options should i choose for this?    AE does not seem to tell me how big the end file will be and it takes 1 hour and half to process this 2 minute interview so it will take me an awfull long time to get to the bottom of this if i try by myself
    thanks

    It doesn't "increase" the file size. You're making a brand new file.
    What you put into After Effects has nothing to do with the resulting file. You can have an AE composition with no footage whatsoever and the resulting file will be much larger than 0!
    After Effects works internally with completely uncompressed pixel data, so no matter what you toss into it, it produces whatever you tell it to produce. As Mylenium points out, you made an uncompressed final file.
    Your original video file is VERY compressed. So, of COURSE uncompressed video is going to look massive by comparison.
    Read Mylenium's link to understand a bit more and go here to learn AE: Getting started with After Effects There are lots of "gotchas" like this that'll bit your butt if you skip this basic training stuff.

  • How do I fix orientation of photos after they were changed after importing iPhoto library into new Photo app in Yosemite?

    When I switched over to the new Photos app in Yosemite v10.10.3 and imported my iPhoto library to it, random photos in my library had their orientation changed. Some are upside down and some are turned on their side. I have a huge photo library, so this is frustrating. Hoping I don't have to go in and fix each one. I tried rebuilding my library by lauching Photo holding down option+command, but that didn't fix anything. Please help! Mahalo!

    You do not have duplicate albums or photos.
    Photo Stream
    http://www.apple.com/icloud/features/photo-stream.html
    The Camera Roll is for photos/videos that were captured by your iPhone, and for a photo saved from a received email, MMS, or from a website. These photos are also placed in the Photo Stream to be synced with your computer and/or with another iOS 5 device. Photos/videos in the Camera Roll can and should be imported by your computer as with any other digital camera.
    All photos transferred from your computer via the iTunes sync process are stored in the iPhone's Photo Library. The photos in the folders or albums below include a pointer to the original photos stored in the Photo Library. The photos are not duplicated taking up double the storage space. This way you can view the photos in a particular folder or album below only by selecting the folder or album, or you can view all photos in all folders or albums be selecting Photo Library.
    This cannot be changed.
    Removing photos or folders/albums of photos from your iPhone that were transferred from your computer via the Tunes process is done in the same way - via the iTunes sync process.

  • After importing photos into Windows Live Photo Gallery, won't let me edit or change or save... Any ideas?

    When I import photos thru camera wizard, then open in WIndows Live Photo Gallery it won't let me rotate or crop or anything. Says I don't have permission, but isn't tagged as "read only". Any ideas?

    OMG... That exact... and I mean "exact" thing happened to me just now. I'm freaking out... I've been working on this for like 90 minutes without saving... and I've done a lot. It happened as suddenly to me as it did for you, and I'm not eligible for free phone service. The only difference is that when I go away from iMovie for a little while, the buttons all disappear and slowly reappear... it's like it's frozen, but not.... What a weird glitch... Lucky us...

  • Render file size bigger After Effects CC 2014

    Hello, this seems like a silly question, but ever since the 'After Effects CC 2014' update my rendered files seem to be enormous in comparison to the files I rendered before the update!
    I don't see why the update would have adjusted my render preferences, but it must have done as a 2min clip that rendered at 140mb before is now 10GB!!!
    My knowledge of codecs and compression is limited but I had a good preset before the update which now seems to have changed (although I have always been rendering h.264/full quality/no audio so I don't understand how the file size can change so drastically).
    Has anyone else experienced anything similar?
    If not could you please advise me on how to render these files to a suitable size. Like I said they need to be h.264, 1920 x 1080 with no audio.
    Thanks.

    After Effects CC 2014 no longer supports the output of many delivery codecs, such as Mpeg4 and H264, through the Render Queue.
    You can output far more formats, and in greater quality, using Adobe Media Encoder.  You can send AE renders directly to AME from After Effects.  You can import AE projects directly into AME.  And you can also render high quality and/or lossless formats from the AE Render Queue and then re-encode them from AME.

  • Can't access jpeg files through finder after import to iPhoto '11

    Am I missing something here? I recently imported my entire library from a backup source to iPhoto '11 on a new computer. I used to be able to browse the folders in the iPhoto library in a finder window. Now when I try to open the iPhoto library, the application itself launches.

    Since iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    Accessing files via the Finder has never been supported on any version of iPhoto.
    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.
    Uploaded with plasq's Skitch!
    *_(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:
    Uploaded with plasq's Skitch!
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    If you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage/Outlook, 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.
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *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.
    3. *Show File*: File -> Reveal In Finder on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    3. *Show File*: 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.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Note that iPhoto sends a copy+ of the file to Photoshop, so when you save be sure to use the Save command, not Save As... If you use Save As then you're creating a new file and iPhoto has no way of knowing about this new file. iPhoto is preserving your original anyway.
    All of the above are a: Faster and b: Safer than rooting around in the old Library folders.
    Regards
    TD

  • After Import photos are not visible in IPhoto

    I have a problem with IPhoto 8 (7.1.5)
    When I import photos from either the Iphone or a Photo DVD the photos are first visible. After closing and restarting Iphoto, Iphoto tells me, that some photos are not in the liabrary and will be recovered.
    Both, the imported photos as the recovered, are not visible. If I'm opening the library file, the photos are still there and I can look at them.
    Do you know how I can fix it?
    (Background information: My HD crashed and I've got a knew one, the restorage of the photos was successful the problem started afterwards)
    Thank you!

    No. He problem is with the library. Re-installing the app will make no difference to that.
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

Maybe you are looking for