Cropped in Photoshop but saved file can't be seen in iPhoto browser??

iPhoto Preferences > General > Edit photo: > in Adobe Photoshop CS4
When I open an image in iPhoto, and right click to open in external editor, then crop the photo and Save As, the cropped image does not show up when I browse iPhoto. When I command-click the title of the PS file, however, it shows me that the cropped file actually exists inside the exact iPhoto folder where the original picture is.
I am having trouble understanding the basic idea of how iPhoto's library works and how PS CS4 interacts when you save an image.
I want to keep using iPhoto as my one and only library, but this kind of behavior is crazy making. Can someone shed some light, or point me towards the right thread?
Thanks!

Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
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: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

Similar Messages

  • Puchased music in itunes. but no file can be found. Have checked for available downloads but nothing available. Went to purchase again thinking i would not be charged again, but it warns me that i will actually be buying again and may have duplicates in l

    puchased music in itunes. but no file can be found. Have checked for available downloads but nothing available. Went to purchase again thinking i would not be charged again, but it warns me that i will actually be buying again and may have duplicates in library after purchase. Normaly after i purchase from itunes, it is a free download any time after, and on my other devices.
    Why can't itunes locate these files?

    It has always been very basic to maintain a backup of the important files and data on your computer.
    Use that backup to put everything back.

  • How to get a gif file to loop in PE11 with MAC 10.6.8? 480x320x72 pix/in. saved layers for web, check animate,preview plays fine but saved file doesnt

    can't figure out why the gif file won't loop. Set up 5 photo frames 480x320pixels x 72pix/in in PE11, creating a layer for each. Each layer visible. Saved for web. Checked animate. The preview plays fine. But when I save the file and then click on the saved file to play, it re-opens the layers instead of playing the loop. The only SAVE option that shows up is "IMAGES ONLY"
    Using photoshop elements 11 on MAC 10.6.8. Either I'm setting this up wrong or is there a hidden setting I need to change?

    Thanks for the thought, Barbara B. Not sure if this counts, but emailed the file to myself [different email account, same computer] but it would not play as an email attachment. Any suggestions for a web upload where I can test your suggestion? Seems like there should be a different save option other than IMAGES ONLY but that is the only option I'm given.

  • Photoshop CS - Saving file as jpg

    Hi
    I am using CS v8.0 and using a javascript action script. I seem to be having all kinds of problems saving the document as a .jpg though. I simply want to open all the files in a folder, resize the image and save the file with a different name (in the same folder). Here is my code so far:
    // Save current dialog preferences
    var startDisplayDialogs = app.displayDialogs;
    var startRulerUnits = app.preferences.rulerUnits; // Save the current preferences
    app.preferences.rulerUnits = Units.PIXELS; // Set Photoshop to use pixels
    // Don't display dialogs
    app.displayDialogs = DialogModes.NO;
    var FILE_TYPE = ".jpg"; // The type of files that this script works on -- you can change
    var SEARCH_MASK = "*" + FILE_TYPE; // Image file filter to find only those files
    try {
    // Ask user for input folder
    var inputFolder = Folder.selectDialog("Select a folder to process");
    if (inputFolder == null)
    throw X_NOINPUT;
    // get all files in the input folder
    var fileList = inputFolder.getFiles(SEARCH_MASK);
    // Open each file in turn
    for (var i = 0; i < fileList.length; i++) {
    // Set document to open file
    var docRef = open(fileList[i]);
    var fname = docRef.name;
    var currentDocument = app.activeDocument;
    // IF LandScape Picture
    if (currentDocument.height.value < currentDocument.width.value) {
    // Resize image by shrinking width
    currentDocument.resizeImage(110,undefined);
    // IF Height < 110 --- Enlarge top right of canvas
    if (currentDocument.height.value < 110) {
    currentDocument.resizeCanvas(110,110,AnchorPosition.BOTTOMLEFT);
    docRef.backgroundLayer.applySharpen();
    var saveFile = new File(fname.slice(0,-4) + "-small.jpg");
    var saveOptions = new JPEGSaveOptions();
    saveOptions.quality = 3;
    currentDocument.saveAs(saveFile,saveOptions,true,Extension.LOWERCASE);
    currentDocument.close(saveOptions.DONOTSAVECHANGES);
    } else {
    currentDocument.close(saveOptions.DONOTSAVECHANGES);
    } else {
    // Resize image by shrinking height
    currentDocument.resizeImage(undefined,110);
    // IF Width < 110 --- Enlarge right of canvas
    if (currentDocument.width.value < 110) {
    currentDocument.resizeCanvas(110,110,AnchorPosition.BOTTOMLEFT);
    docRef.backgroundLayer.applySharpen();
    var saveFile = new File(fname.slice(0,-4) + "-small.jpg");
    var saveOptions = new JPEGSaveOptions();
    saveOptions.quality = 3;
    currentDocument.saveAs(saveFile,saveOptions,true,Extension.LOWERCASE);
    currentDocument.close(saveOptions.DONOTSAVECHANGES);
    } else {
    currentDocument.close(saveOptions.DONOTSAVECHANGES);
    catch (exception) {
    // Show degbug message and then quit
    alert(exception);
    finally {
    // Reset app preferences
    app.displayDialogs = startDisplayDialogs;
    The resize of the image seems to work fine but i just can't get the saving working. Also, even though i have specified DONOTSAVECHANGES i still get the "Do you want to save changes" prompt when closing the file.
    Any help is appreciated..
    Thanks,
    Dan

    With CS2, you have to make sure the image is flattened, there are not paths, no extra channels, in RGB colorspace, and 8bit.  The current versions of PS does this for you, but not CS2.
    BTW, you said you just installed CS2, which is a very old program.  I hope you have a license for it.  See this thread:
    https://forums.adobe.com/message/6290183#6290183

  • Photoshop is saving files as corrupt

    Whenever i save a file on photoshop it corrupts the file. I can reopen it in the computer i saved it on, but the files are often distorted and look as though the channels are separated. When i tried opening them on another computer, it refused to open the photoshop file, saying "cannot open because file is not a valid photoshop document". what the heck is going on? i've lost about 3 days worth of work, all incrimented files, and i'm super frustrated.  (using cs6 on a macbook pro 17")

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that because this is boilerplate text, not all points may apply to any given, specific poster.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Can no longer playback saved files, can someone help?

    I have the Quicktime Pro 7.1.5 and have never had problems with it until recently. Everything is updated and upgraded, but for some reason wverytime I try to play a video file that I have saved I only get a scrambled green screen. In the past I never had any problem viewing these files, but now I can seem to figure out how to view them. I can still view downloads on-line and save them, but once saved the same problem with viewing them happens. I have tried everything I can think of, any suggestions?

    Everything is updated and upgraded, but for some reason wverytime I try to play a video file that I have saved I only get a scrambled green screen.
    with those symptoms, try running through the possibilities from the following document. (iTunes uses QuickTime for video playback, so the same basic troubleshooting procedures apply.)
    Troubleshooting iTunes for Windows video playback perfomance issues

  • HT4527 did library transfer from old to new computer but some files can't be located

    I did a itunes library transfer from my old computer to my new computer. However when I select to play some of the songs from my new computer I get a message saying the file can't be located. This does not haqppen on the old computer. Any suggestions that might fix this problem.
    Both computers have Windows OS's and I have the newest versions of I Tunes.

    It seems you havent copied the actual music files over.
    See this http://support.apple.com/kb/HT4527
    Also, follow the steps given here...
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Help! Tampered with files-can't open photos in iPhoto any longer

    I was doing some stuff with my Photo folders in the Finder, accidentaly deleted some and even after dragging them out of the trash I can't view my photos in the iPhoto anymore. What do I do? All the pictures are still in the Finder folders but iPhoto says its library is empty and it won't import any pictures from Finder. How do I restore them? Please Help!!

    Hi grimus,
    See if creating a new library will help get your photos back into iPhoto.
    Close iPhoto
    Rename your messed up iPhoto Library to "iPhoto Library_old"
    Drag this library to your desktop
    Hold down the Option key and launch iPhoto
    This is the window you will get
    Create a new library or choose a library to open
    Choose to create a new library
    Once this new empty library is open it is time to import the images from your old library
    Go to File>add to library
    Navigate to the old library on your desktop and highlight it in the window, then click the "open" button.
    iPhoto will start importing the images from your old library
    This is what to expect:
    Your images will be imported in nice dated rolls. (make sure your view is set to sort by rolls to see it) There are a couple of caveats to this. You will get rolls named "Originals" These rolls will contain your video clips and your original images that you had edited. If you had RAW files they would be in those rolls too (I don't do RAW, so I don't know for sure) Delete what you don't want from those rolls. You will also get the jpeg pointer files to your video clips imported. They will just be jpegs and will not point to the video clips anymore as iPhoto made new ones when the clips were imported again. You can delete those. they should be in a roll right next to the newly imported video clips so they are not hard to find. The thumbnail files don't get imported as iPhoto makes new ones when the images are imported.
    Once all you images have been imported, check through the library and make sure everything looks ok.
    You can now start making your Albums, and do your keywords or any other organizational steps.
    You can also delete the old library on the desktop.
    It is also a good time to backup this new library to CD/DVD by burning the iPhoto LIbrary folder in the Finder, or copying the iPhoto Library folder to an external drive formatted for Macs, or copying the iPhoto LIbrary folder to an iPod.
    Good luck!

  • Photoshop CS5, saving files

    I upgraded to Photoshop CS5 and am having an intermittent problem. About 60% of the time when I am working on a file and use "ControlS" to save the file, it will not work. I have to click in the window first, then the save "ControlS will work." The same thing happens on occasion when trying to run an action from a shortcut! Very, very annoying. Acutally, I upgraded from Windows Vista to Windows 7 just for this reason thinking it would correct the problem, but it didn't.
    Is anyone having this problem and does anyone have a solution?

    This is the boilerplate text often used in connection to saving to a network (please NOTE the part where it explains that normally, it does work, but that it is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe):
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files. Working across a network is not supported.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
         Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.   It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.
    When problems arise, a lot of valuable work can be lost.

  • Pages '09 flat files can't be deleted but package files can

    Hi all
    If I save Pages '09 files in their default 'flat' format, then I can't delete them (empty trash command says files still in use, even if computer restarted and Pages closed), but if I save files as '09 packages, they are easy to delete. Anyone else come across this, or got an explanation?

    Thanks to people for suggestions. Oddly, I've found a very simple solution... if I leave the items in the Trash for a few minutes, sooner or later they become deletable (possibly helped if the computer not doing anything else). Other files are deletable from the moment they hit the trash can, so there's still something different about the pages files. I wonder if another app or process finds it hard to let them go, or some odd thing like that. So it's turning into a minor oddity/ quirk rather than major problem. I'm still a bit puzzled, but I can live with the current level of weirdness (unless it gets worse...!)

  • Streaming is ok but saved files are not

    Hello
    When I watch a sequence directly from the net, everything is ok. But if I save it for later and open it from the local file I can't watch it correctly. The sound and the images are jerked.
    For example I can't read the new TV ADs from Apple in local...
    My supposition is that the cache is better for the streaming.
    Is it possible to manage the cache for a local file ?

    For exemple, this one:
    http://movies.apple.com/movies/us/apple/getamacads1/restarting480x376.mov
    Bur I have also noticed that it depends on which screen (or which graphic card) I watch the movie on.
    NVIDIA, GeForce2 MX, AGP, 32 Mo
    is ok
    ATI Radeon 9200, PCI, 128 Mo
    is not

  • Report has been generated , but *.rep file can't be ran.PLEASE HELP!

    Hi,
    I am facing real challenge.
    I've created report based on the stored function(packaged function).But when I try to run *.rep file I get Rep-1219< "F_xxx" has no size -- length or width is zero.>Well , my field does have a size.Also what is interesting that if I go back to the *.rdf file and try to run inside Reports during design second time I get the same error . Then if I go thru wizards again I get
    Rep1106 <warning no field generated for the column "bla-bla">, and I get this message for the all my columns that I have in the second group.My report is group above.I am sure that 1106 is the cause for the 1219 in the runtime.But then if go thru wizard once again after all those 1106 messages I am able to generate report!!!! And then I do editing of report and successfully generarate new *.rep file, but when I run this file I get the same results already described.
    In my report I have formula column(1) that gets value from another column(2) if values in the 3rd column not null, then I summarized column (1) at report level.
    Just creating summary for the column(2) is not an option for me, because I need some values, but not all of them.Another select statment is not gonna work , because as I said, report is built on function returning ref cursor.
    So can anybody help me with this problem?
    Or any suggestions?
    Thanks a lot in advance.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Yu:
    I've tried all:manually increase fields,
    increase size in layout model, nothing worked.
    What else can be done?<HR></BLOCKQUOTE>
    Hey ,
    Check this out
    Cause: When you defaulted your layout, a field was not generated for the column in the message. The most likely cause is that a summary was not placed in the data model correctly. For example, you may have specified the source of a summary column to be a column in a group above the summary's group. This is not allowed.
    Action: Debug your data model and redefault your layout.
    I hope the problem is group layout..
    Cheers ...
    Krishna ...

  • Photoshop CS4 - Saving file displays a Quicktime Preview Error

    Hi,
    I recently transferred my system from an iMac to a Macbook Pro (OS X 10.6.3). Everything seems to work except every time I now go to save a file in Photoshop (CS4) it displays a message: "Could not build a preview because of a problem with Quicktime"
    I've searched forums, un-installed and re-installed Photoshop and still no fix. Even setting save Preview to 'never' in Photoshop Preferences does not help. Has anyone seen this? Is there a preferences or permission that I need to fix or trash in Quicktime?

    Hi Chris,
    Thanks for your reply. I also tried reinstalling Quicktime X from the install disk (using the Pacifist application), still did not fix. I did however find that setting the Save preview preferences then closing and re-starting Photoshop does sort of fix the problem. With the Macintosh preview disabled the message does not appear so yes I would say it's an OS problem.
    Would still be nice to know if there is an actual fix, as yet I haven't seen the error in any other application.
    Update: I also found 'copy to clipboard' and 'paste into PS' also did not work! So after a day of erasing the MacPro hard drive and re-installing the OS and all applications from scratch everything seems to work correctly. Seems Apple's migration from one computer to another really doesn't work that well.

  • HT4759 icloud is not supported on windows, but exe files can still be installed

    why is icloud so damm hard to use on windows ?  i have no apple devices, wont like one if thats will be so hard everytime to make a simple thing with apple

    If you have no Apple devices you can not open an iCloud account, simple really.

  • QT Pro - .mov files - can't copy/paste/export - opens browser

    On a couple .mov files, when I open them, my browser opens also. As for the .mov files, I can't copy, paste, export etc.
    Can anyone explain this, and is there a way to resolve the browser and other issues?
    Thanks in advance for any assistance.

    thanks Terence,
    So I went into Iphoto, selected the Trimmed Movie and selected. PHOTOS, revert to Original.
    Now I can COPY and PASTE the MOVIE from Iphoto to a normal Folder.
    I then opened the original .mov file in Quicktime and trim the movie.  I then go to close and save
    "The Operation could not be completed, an unknown error occured"

Maybe you are looking for

  • OBIEE 11g BI Publisher; New Data Set Creation Error "Failed to load SQL"

    Hi, I'm trying to create a new SQL data set (from a client machine). I use "query builder" to build the data set. But when I click "OK", it fires the error "Failed to load SQL". But strangely, if connect to the OBIEE server's desktop and create the d

  • How do I move photos from Ipad to desktop

    How do I move photos from Ipad to desktop to free space on Ipad?

  • Configuring in Purgatory (Problems w/ PCs Recognizng External HD)

    Apple does a phenomenal job engineering/designing its products. The problem, however, is when one tries bringing PCs in the mix, in this case integrating my son's PCs into our Airport Extreme home network. I just added an external hard drive to the A

  • Setting Up Flex

    I'm getting started with Flex and I want to know how can you publish your project in the web. Instead of using Index.html you need to use .mxml (main) or you have to add it as a component in the HTML file. Thanks

  • Can't Acquire IP Address - Please Help!

    Please help! I recently bought an aluminum macbook and despite having no problem connecting to my home network through airport, have been unable to connect to the network at the school where I teach. We have several mac experts at my school, a mac la