Aperture 3 - Exporting Photos Results in Black Images

Hi --
I'm currently having issues exporting images from my Aperture library (whether thru the Export menu command, or thru the auto-uploading feature [like Flickr]).  Whenever I export images -- they result in totally black photos.  I've tried exporting in other formats (JPEG, TIFF, etc.) with the same results.  Only if I export the Original can I get the photos out of Aperture. 
I switched to another library to see if it was having the same issue -- it was not.  I've repaired permissions and repaired the database -- still having the same issue.  Does this indicate a corrupted Library?  Should I try the (ominous sounding, according to the documentation) "Rebuild Database" option -- or should I try to create a new libary with the same images to see if that fixes things?
Any suggestions would be appreciated, as I've yet to find any other users with a similar problem.  Been using Aperture for years without issues -- this is the first major problem I've encountered. 
Thanks.

I switched to another library to see if it was having the same issue -- it was not.  I've repaired permissions and repaired the database -- still having the same issue.  Does this indicate a corrupted Library?
That does indeed look like something may be wrong with your library.
Should I try the (ominous sounding, according to the documentation) "Rebuild Database" option -- or should I try to create a new libary with the same images to see if that fixes things?
If you create a new library with the existing images, you will have to start over and redo all your edits.
Try first to rebuil the library. That will create new database files inside. But make sure that you have a backup of your library, before you try a rebuild, just in case.
Have you checked the "Export preset" that you are using, if anything can turn the images black: set the preset to "edit" and look at the options, i.e. color profile or watermark.
Regards
Léonie

Similar Messages

  • Aperture to export photos either TIFF or JPEG files, highlight and shadow transition has obvious faults, this problem solved!?

    Aperture to export photos either TIFF or JPEG files, highlight and shadow transition has obvious faults, this problem solved!?

    What problem?
    You will have to be _a lot_ more specific if you'd like responsible feedback.
    I export thousands of TIFF and JPG files a week with no obvious faults.
    (Sent from my magic glass.) 

  • Everytime I open Aperture, the main photo appears in black

    Hi
    I don´t really know what I was doing with my aperture but something happened since I started editing some of my photos.
    And everytime I open aperture in the split view, the main photo appear in black&white while the rest of them are fine ( I mean in color)
    How can I fix???

    Your saying that the main image is in B&W but the previews are in color?
    Check that View->Onscreen Proffing is off

  • Graphics2D.scale(0.5, 0.5) or higher scale results in black image!

    All,
    I'm trying to print an image (a JPanel) after scaling it to fit with maximum aspect on a portrait or landscape page. I've liberally taken code from Marty Hall at http://www.apl.jhu.edu/~hall/java/ with some adaptations to come up with a scaling factor. The result is:
    public class PrintUtilities implements Printable {
      private Component componentToBePrinted;
      public static void printComponent(Component c) {
        new PrintUtilities(c).print();
      public PrintUtilities(Component componentToBePrinted) {
        this.componentToBePrinted = componentToBePrinted;
      public void print() {
        PrinterJob printJob = PrinterJob.getPrinterJob();
        printJob.setPrintable(this);
        if (printJob.printDialog())
          try {
            printJob.print();
          } catch(PrinterException pe) {
            System.out.println("Error printing: " + pe);
      public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
        if (pageIndex > 0) {
          return(NO_SUCH_PAGE);
        } else {
          Graphics2D g2d = (Graphics2D)g;
          g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
          // Obtain a scale factor to print entire remote desktop on a page
          // regardless of page orientation or g2d image size:
          Dimension d = componentToBePrinted.getSize();
          double g2dWidth = d.width;
          double g2dHeight = d.height;
          double pageWidth = pageFormat.getImageableWidth();
          double pageHeight = pageFormat.getImageableHeight();
          double xScaleFactor = pageWidth / g2dWidth;
          double yScaleFactor = pageHeight / g2dHeight;
          // scale the image relevant to the scale factor to fit it on one page:
          g2d.scale(xScaleFactor, yScaleFactor);
          // g2d.scale(0.40, 0.40);
          disableDoubleBuffering(componentToBePrinted);
          componentToBePrinted.paint(g2d);
          enableDoubleBuffering(componentToBePrinted);
          return(PAGE_EXISTS);
      /** The speed and quality of printing suffers dramatically if
       *  any of the containers have double buffering turned on.
       *  So this turns if off globally.
       *  @see enableDoubleBuffering
      public static void disableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(false);
      /** Re-enables double buffering globally. */
      public static void enableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(true);
    }Please pay particular attention to the lines above that deal with "scaling factor". In this example, I have the "scale(xScaleFactor, yScaleFactor)" line uncommented, which results in a black image when I print. If I comment this line and uncomment the line "scale (0.40, 0.40)", the image scales fine. I've tried using an AffineTransform, but I couldn't get that to work either. I've searched at length through forums and through Google results, but I can't figure out exactly what I'm doing wrong. Any suggestions would be greatly appreciated. Thanks very much in advance!
    Steve

    One more update... Portrait scaling seems to work fine with this version of the jvm, but landscape scaling is messed up, resulting in an image that's sort of gray. New code (only one changed method):
      public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
        if (pageIndex > 0) {
          return(NO_SUCH_PAGE);
        } else {
          Graphics2D g2d = (Graphics2D)g;
          g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
          // Obtain a scale factor to print entire remote desktop on a page
          // regardless of page orientation or desktop size:
          Dimension d = componentToBePrinted.getSize();
          double g2dWidth = d.width;
          double g2dHeight = d.height;
          double pageWidth = pageFormat.getImageableWidth();
          double pageHeight = pageFormat.getImageableHeight();
          double scaleFactor = 1.0;      // default scale factor doesn't change image size
          if (pageFormat.getOrientation() == PageFormat.LANDSCAPE) {
               scaleFactor = pageHeight / g2dHeight;
          } else if (pageFormat.getOrientation() == PageFormat.PORTRAIT) {
               scaleFactor = pageWidth / g2dWidth;
          // scale the image relevant to the scale factor to fit it on one page:
          g2d.scale(scaleFactor, scaleFactor);
          // g2d.scale(0.40, 0.40);
          disableDoubleBuffering(componentToBePrinted);
          componentToBePrinted.paint(g2d);
          enableDoubleBuffering(componentToBePrinted);
          return(PAGE_EXISTS);
      }

  • Exporting video results in still image with original sound background

    I've tried several times to export my home movie (MOV) into smaller formats using the export function. It worked fine on QT 6 but now I'm on version 7 and it's not working. The final product is a still image of the first frame and the original recording. I've tried exporting to various formats as well with the same result. Any help out there? Thanks!!!

    Would it matter if the very first file from the camera was an AVI file? I first had QT convert that file to an MOV file which plays just fine.
    As long as the MOV file plays in QT, it shouldn't matter at all. In fact, placing it in a known "space" should indicate it is convertible to other target formats even if only on your system configuration.

  • Aperture Crashes Exporting Photos

    I regularly convert batches of photos from Aperture to jpeg (for posting on an Internet site). However, this routinely causes Aperture to crash. Sometimes I even get the frozen computer with the turn the computer off message (forget the exact verbiage - it's in multiple languages though). If I limit the batches to about thirty photos each, it seems to help minimize the crashes. However usually starting around the third batch, the system will inevitably crash.
    Was wondering if anyone else is experiencing this crash problem? Is there some buffer that's not being cleared? Also and most importantly is there a better workaround? I'm usually exporting .psd files that I've edited in Photoshop (previously CS2, now CS3). I'm creating these jpeg batches weekly and the repeated crashes are getting very old...
    Apreciate any suggestions!

    Ian:
    Thought I'd take your advice and run a new hardware test. Unfortunately, we recently moved and I can't find my original disks that came with the G5 (new 27 months ago) - they're in a box somewhere. Haven't had much luck on this site locating a version of Apple's Hardware Test that I can download. Also, hasn't the this test been updated since 2005? Should I use a more recent version (since I'm running Tiger instead of the version of OS X that came with the G5)?
    Interested in any advice you may have on obtaining an appropriate copy of Apple's Hardware Test.
    Thanks

  • Some iPhone 4S photos imported via Photo Stream are black

    I'm seeing a whole bunch of iPhone 4S photos imported via Photo Stream as black images in latest iPhoto '11.  When I look at the original file in finder, it is intact, however the modified one is just a black image (which is what shows up in iPhoto).
    This is very concerning.  I'm now manually re-importing all my 4S photos.
    Strangely, the same photos that appear black in iPhoto Photo Stream are fine on my iPad and iPhone Photo Stream view.
    So it seems that iPhoto is breaking them when it imports them.

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help:
    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • All exports from Aperture appear as a solid black image

    I am having issues exporting photos from Aperture - any photo export I make turns out solid black.
    I have been using aperture for years with no problem - and all of a sudden I am having issues today. Whichever way I try to export - whether it is file and export, or sharing through facebook - the image comes out a solid black. An additional (related) issue is that when I edit a photo (crop, cimple color adjust etc.) the image then appears the same solid black in the browser. If I double click on the image I can see it again (most of the time - there are a couple I am unable to see).
    I took the shots with my Nikon D7000, imported them to my iPad, and then into aperture (which has always worked in the past).
    I have run all updates on Aperture, my mac, and checked other forums but can't find any solutions.
    Is anyone else having this problem?

    Hey leonieDF
    Thanks for your reply. I am exporting edited versions - export seems to work OK when exporting originals. But all my images are edited a bit, even if just simple cropping etc.
    I tried adjusting the color sync profile as you suggested but this didn't help. I also adjusted the gamma and watermark and again, no change.
    It seems like I have some kind of bug or something within Aperture, because it is doing all kind of strange things, like now eny time I edit a photo at all it appears solid black in my "browse" view (but OK when I double click it). Similarly, when I duplicate a photo it does random funky stuff to the photo in browse view (from being solid black, to solid red, to appeairng to have some random color filter, to appearing like static from static TV). These issues are all secondary though from the main issue of not being able to export images, since I have a friends wedding photos I am trying to get out to them!
    Any other ideas of what might be causing this?
    Thanks for your help!

  • When I export photos from Aperture, the pixel dimensions are halved thus losing data.  I have set the export preferences to export at original size, to no avail.  This happens even if I just drag to the desktop and then back, or if I export into my iphoto

    When I export photos from Aperture to desktop or iphoto I lose pixels.  The pixel dimensions are halved, despite setting the export preference to export at original size.  Anyone know why or how to correct this?

    Dragging an Image from Aperture exports the Preview.  Preview parameters are set on the Previews tab of Aperture preferences.
    Are you seeing the same results when you export using one of the export commands?
    Is so, confirm that the settings in the selected Image Export Preset ("Aperture➞Presets➞Image Export") truly represent those in the Image Export Preset's name.
    HTH,
    --Kirby.

  • How can I export photos from Aperture with a new sequence and ignore the embedded JPEG number? Have tried renumbering to no avail.

    How can I export photos from APERTURE with a new sequence and ignore the embedded JPEG number? Have tried renumbering to no avail.
    has anyone resolved this issue?
    This is now the second big Problem with using Apple's Appeture with NO apparent FIX...
    Aperture has NO DIRECT way to Burn to a CD/DVD & apparently NO way to RE-SEQUENCE the numbering system????
    ANYONE... I wish APPLE would address/fix these 2 problems... LIGHTROOM I guess is next?

    Hi David,
    Coming in and whining loudly is rude.  We are all volunteers here, voluntarily sharing our expertise so that users like you can make the most of their time with Aperture.  Speaking just for myself:  although I do care about your success with software (it's why I'm here), I don't care what software you use.  If you want to use Lightroom, do so, and post your questions in an appropriate forum.
    Burning files to a CD is a file operation done at the system level (it is built into OS X).  Aperture lets your create sharable image-format files from your Images.  You then use OS X's tools to burn those files to a CD.  Iirc, you can set up a "Burn Folder" in Finder, into which you can export files created from your Images, and with a single click burn your CD.
    Naming the files you create by exporting your Images can be tricky.  There are _many_ possibilities.  Some things can't be done.  Sequencing can be done in a number of ways (see Léonie's answer above).  What have you tried?  What was the result?  In what way did this differ from what you expected?
    --Kirby.

  • Solution to "Black image when adding a watermark in Aperture"

    Hi,
    I read an archived topic about people having issues with adding a watermark to their exported images using Aperture 1.5.2. I think the solution lies with what your current Display color profile (System Preferences > Display > Color) is set to and what color profile you used to create your watermark.
    I created my original watermark using Photoshop CS2 and I believe that the watermark was saved using the sRGB Profle. However, I then calibrated my monitor using a Pantone Huey and it changed the color profile in my System Preferences. So every time I tried to export an image with a watermark from Aperture, I would get a black image with my watermark in the correct spot.
    To solve the problem, I changed my Color Profile to sRGB Profile, then started Aperture. When I exported my image, everything came out properly.
    Hope this is helpful to others.

    I also just ran into this problem...my solution was an issue with the RAW fine tuning.
    Images that used the new RAW fine tuning 2.0 (with Aperture 2) exported watermarks (I used a .psd file) just fine, but when exporting images with RAW fine tuning 1.1, a black box would show up around my watermark. So I migrated my images to RAW fine tuning 2.0 and it fixed the black box issue.

  • When I export a photo from lightroom, the image is very pixelated.

    When I export a photo from lightroom, the image is very pixelated. This pixelization occurs irrespective of whether I make adjustments in Lightroom.  It seems that just placeing the photo into he develope modual  without doing anything to it taints the image in such a manner that when it is exported from the develope modual the expot comes out pixelated.

    Brett,
    The photo i was a panorama knitted in Photoshop from four photos which were approx 3.3 MB each. The knitted pic came out to be 1.10MB. The panorama pic I was trying to refine in Lightroom and export came out to be 70.9 KB and extremly pixilated. Whether I altered it  in Lightroom  or not didn't matter.
    I can't imagine that bringing up the photo in the Develop modual would result in pixilization when it was exported regardless of whether it was altered or not altered.!!
    Attached is  a copy of the Photoshop saved and Lightroom exported photos before and after. I appreciate your help and interest. The top pic 1.10MB is what was saved on Photoshop. The bottom pic 70.9KB is the unaltered pic exported out of the Develop modual exhiiting the pixelization.

  • Lightroom 3.0 exports show up as checkerboard image not photo

    I have used LR successfully for 6 months. Then yesterday, when I export an image and go to access it, the image that appears is not a photo, but a blurry checkerboard image with hints of the color of the photo. Ironically, all of the previously exported photos are just fine. I have tried updating LR and triple checking my settings and the same thing.
    Any thoughts?
    Help! Just in time for Christmas, too. Ugh.

    léonie was able to help me with her (german) anwer in this thread: RAW Dateien nicht unterstütztes Bildformat
    The solution was to remove and re-install the RAW support from Apple.
    The solution was to
    remove "RawCamera.bundle" and "RawCameraSupport.bundle" from the /System/Library/Coreservices Folder
    (In Terminal.app: "cd /System/Library/CoreServices/", "sudo rm -r *Raw*" (WARNING, THIS REMOVES THE FILES INSTANTLY!))
    Reboot the system
    Re-Download the Raw Compatibility update 5.06 form Apple Support: http://support.apple.com/kb/DL1757 and install it
    Restart Aperture, reprocess the affected files and order the photo book.

  • I am using Lightroom 5.7, 64 bit with Windows 7 Professional. For no apparent reason, I now get an error message when I export a photo, say a raw image to a JPG. However, the exported image seems to be OK. But now I notice that my LR directory of folders

    I am using Lightroom 5.7, 64 bit with Windows 7 Professional. For no apparent reason, I now get an error message when I export a photo, say a raw image to a JPG. However, the exported image seems to be OK. But now I notice that my LR directory of folders in Library view does not show images correctly: If there is a folder with sub-folder(s), the folder will indicate 0 images, but the sub-folders show the proper number of images. What happened and is there a fix? I tried uninstalling Lightroom and re-installing, but problem persists.
    Here is a screen shot of the error message:
    Message was edited by: Joseph Costanza, Jr.

    See here for a solution.

  • Exporting photos for UHDTV or Native 4K TV, what are the best settings ? (File: Quality File: Color Space, Image Sizing and resolution)   Or in other words; How can I get the smallest files but keep good quality for display on new UHDTV

    Exporting photos for UHDTV or Native 4K TV, what are the best settings ? (File: Quality File: Color Space, Image Sizing and resolution)   Or in other words; How can I get the smallest files but keep good quality for display on new UHDTV

    You're welcome, and thank you for the reply.
    2) Yesterday I made the subclips with the In-Out Points and Command-U, the benefit is that I've seen the clip before naming it. Now I'm using markers, it's benefit is that I can write comment and (the later) clip name at once, the drawback is that I have to view to the next shot's beginning before knowing what the shot contains.
    But now I found out that I can reconnect my clips independently to the format I converted the master clip to. I reconnected the media to the original AVI file and it worked, too! The more I work with, the more I'm sold on it... - although it doesn't seem to be able to read and use the date information within the DV AVI.
    1) Ok, I tried something similar within FCE. Just worked, but the file size still remains. Which codec settings should I use? Is the export to DV in MOV with a quality of 75% acceptable for both file size and quality? Or would be encoding as H.264 with best quality an option for archiving, knowing that I have to convert it back to DV if I (maybe) wan't to use it for editing later? Or anything else?
    Thank's in advance again,
    André

Maybe you are looking for

  • My macbook will not start. when powered up it goes to a blank white screen with a folder with a ? on it

    When I start my computer instead of just going to the main screen it goes straight to a blank white page with a folder with a question mark on it that keeps flashing. What's wrong with it?

  • Custom field in SRM as a dropdown field with values stored in R/3

    Hi all, I need help with custom drop-down field in SRM 5.0 shopping cart. We need to create custom field called Location in SRM goods receipt transaction. And this location field will be a drop-down field that will be filled with values from location

  • Mail not saving signatures

    I just added two new email accounts. When I add the signatures for these accounts it adds them just fine, they show up in the right header signature box, everything works just fine...until I close mail. When i reopen the signatures are still in the '

  • Stylewriter II printing, but no ink coming out

    Hi all, I've been using my trusty SWII on my iBook G4 using CUPS and Foomatic. It has been great for years, but now, a problem has arisen. Recently, when the ink cartridge ran out, I bought a new one and now the printer still acts as if there is no i

  • Play pause movie controls

    I would like to create play/pause movie controls that for different flv files. I do not want to use skins but have the controls as part of the movie/video. Can anyone point me to a tutorial source that will help me design these?