IPhoto vs Aperture uploaded image quality to Mobile Me

I realize this may have been discussed, but by my tests the exact same album loaded up to Mobile Me gallery via iPhoto looks better than Aperture...how can this be? I searched for topics about image quality and Mobile Me and found many complaints but little in the way of solutions. While, for me, this seems to be a solution, it is sad that my "pro" app is doing a worse job than a "consumer" app, not to mention the additional importing needed to use iPhoto. And this is v7.1.5 of iPhoto. Anyone have any other solutions for image quality involving Aperture and Mobile Me galleries? Thanks.

So the album finished uploading and the difference is amazing! I was very hesitant to send a link to my client after Aperture had uploaded the album...the images were that soft. But the iPhoto, while still a touch soft look 10X's better. Same album...just different programs used to upload to Mobile Me gallery. I'm not sure what is going on with Aperture, but Apple really needs to figure it out.

Similar Messages

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • Homepage and iPhoto upload image quality

    When I use the 'homepage' option within iPhoto 5 to create an online gallery the images look brilliant using Safari on my iMac G5, however when viewed by PC users with IE6 the images seem to be quite dark.
    Can I do anything with either of these applications to correct this, or do I have to manually adjust the Gamma in ImageReady for each individual photo?..
    Any help greatly appreciated
    Thanks in advance ..

    Nick:
    What are the sizes of the images you're starting with? If you're not adverse to manually uploading the image files in a folder into the Pictures folder on your iDisk and building the web page thru Safari you can fine tune your images like i do. I use the Share->Export->Web Page (actually I've added the BetterHTMLExport plugin to iPhoto for much better control over image quality) and then upload the folder of images that are created on your desktop. I give the containing folder a significant name so it's easy to find with Safari in the Homepage section.
    With BetterHTMLExport there's an option to export the images only to a folder you create on the desktop. That speeds up the process a bit.
    Hope this has been of some help. Good luck.
    OT

  • Problem using email to upload image files to Mobile Me gallery

    I will cross post this question to both Mail and Mobile Me discussion groups because I don't know where my problem lies.
    I have published a gallery page from iPhoto to my Mobile Me gallery. There are two ways to upload additional photos. I am not having trouble adding image files with the Upload feature. I cannot get the email function to work. The emails I send to the email address for the gallery bounce back to my mail inbox.
    Subject: Delivery Notification: Delivery has failed
    and in the body of the bounced email:
    Recipient address: [email protected]
    Reason: SMTP transmission failure has occurred
    Diagnostic code: smtp;521 5.2.1 Fatal failure of WOA
    Remote system: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25) (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Original-envelope-id: [email protected]
    Reporting-MTA: dns;asmtp028-bge351000 (tcp-daemon)
    Original-recipient: rfc822;[email protected]
    Final-recipient: rfc822;[email protected]
    Action: failed
    Status: 5.2.1 (SMTP transmission failure has occurred)
    Remote-MTA: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25)
    (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Diagnostic-code: smtp;521 5.2.1 Fatal failure of WOA
    One of the images I am trying to attach is a jpeg file of 61 kb.
    I have tried to drag the image from my desktop to the body of the email. I have tried using the "attach" function and selecting the file name. I am not sending any text with these files.
    When I built these albums, I checked and enabled all the options.
    I am having this same issue when I try to upload via email to any of my Mobile Me gallery pages.
    There is currently one photo displayed here:
    http://gallery.me.com/tplattenberger#100352
    If anyone wishes to try to upload to that gallery using email (Send to Album) that would be great and if successful, that might provide a clue to my problem.
    As I say, I currently have one photo there. If you find a lot more, please do not add.
    What's the problem?
    Tom

    The images I am trying are newly created and old.
    A weird hint perhaps...
    I just copied an image from Apple's home page and pasted it into the email and tried again...
    it worked.
    So I tried again, dragging from iPhoto and it did not work... the email bounced back.
    So I tried again, this time using copy and paste (like I did from Apple's page) from iPhoto... it did not work.
    Tom

  • Why are my photos i receive from iphoto and aperture such poor quality? On my iMac, they look fine, but when i get the pictures, they are awful. The color looks like there's a gray fog on them, and they're not focused well.

    I use 2 great cameras, download them to iphoto, and now trying aperture. I edit the photos, they look fine, order pictures, and they are terrible! Looks like there's a gray haze on them, their dark, color is awful. Please help me out here! 

    What service are you using?
    What is the color space of the image? If it is AdobeRGB, try using sRGB.

  • Aperture - serious image quality problems

    Two things in advance: 1st of all I love Aperture. That is why I've purchased a MacPro. 2nd thing: English is not my native language please be tolerant about it.
    Back to the topic. My images look blured sometimes. I dont get why it is so but it is rather strange. They are just, hmm, soft. I noticed that sometimes Aperture does not load the image. It just shows it. If there is no reload the images are soft. I had this feeling until today.
    But now I have evidence: I made a Version copy of one my images. Nothing more, nothing less. Just a duplicate of a Version. I did not change any other settings. And guess what: they look different. It is evident when I switch between the two versions. Really really strange! Have a look on them here:
    http://homepage.mac.com/endre.lovas/Aperture%20Bug/
    Any ideas? Does it have anything to do with image previews? Is it possible to turn off those previews somehow? I beleive I have a strong enough comp to avoid the use of them.
    Thank you.
    Endre
    MacPro 2.66   Mac OS X (10.4.8)  

    The two images appear virtuall identical to me in all respects... I downloading both images (the larger ones you get after clicking in the gallery) and overlaid them in Photoshop - once aliged there are almost no differences, and the slight differences that are there can be explained by JPEG compression artifacts being different because the two images are slightly different in cropping.
    I am not saying you don't have a problem, but this gallery does not seem to be showing it well. I can't say either why one image would be fuzzt and another not.

  • How to improve image quality on mobile devices?

    I'm setting up a webcomic at http://minigiggles.com that uses a Flash SWF to show a sequence of images and text within the SWF for each cartoon. I don't want to use a slideshow type setup with individual images because I want people to be able to hotlink and embed the webcomic in their websites. So the images are part of the SWF. On my Droid phone the edge of the images is ragged, while the text is smooth. (When using a Wordpress slideshow plugin where the images are separate files, they display very nicely on my Droid phone, but I don't want to do it that way.) The images are FireworksCS4 PNGs with alpha transparency, converted to symbols in FlashCS4.
    Is there anything I can do to the way the images are imported to Flash that will make them display more smoothly in a Droid smartphone?
    Thanks,
    Tom

    The color space on a TV is completely different, and much, much more restrictive, than that of a computer monitor. If you work is destined for NTSC or PAL TV, you really should use a calibrated monitor to view your project as it will be seen so you can make the right choices of color, title and action safe, and watch for interlace issues. You need to make sure your luma and chroma levels are broadcast safe as well.
    Under the File menu is the new Share feature for exporting movies to different devices (in Motion 4, FCP 7)

  • RAW image import (problem in iphoto and aperture)

    either the problem is me (my understanding of what I am trying to do) or something has gone awry with both aperture and iphoto...
    when importing RAW images (canon 40d camera) many of which are shot in monochrome and show up as such on the camera (they even show up in b/w on the preview import in iphoto and aperture) ALL images once imported to both iphoto and aperture are in full color. This was not the case on two previous imports (shots taken in b/w RAW imported as b/w RAW images) but now seems to happen every time. I have restarted computed, reimported, checked all settings and nothing is working.
    I am missing something, yes? Thanks for any help.

    no ... you will have to export it as a .tiff or .jpeg ...
    and then import into aperture ...
    although aperture does have a great monochrome tool worth checking out ...
    something to consider is to shoot your monochromes in RAW+JPG and import into aperture ...
    see here for working with RAW+JPG:
    http://discussions.apple.com/thread.jspa?threadID=380111&tstart=0
    when stacked you will have the B&W from in camera and the colour RAW file ... tweak the monochrome mixer until the RAW is to your liking ... you can use the B&W JPG for a baseline ...

  • Image quality warning - can I shrink the photos

    I have a 8x10 photo book that I'm trying to build using some old images of mine. The resolution on the old images is 1024 x 768 so iPhoto gives me the image quality resolution if I try to print 1 or 2 photos on a single page. Since I don't want fuzz images when I print the page I'd like to reduce the size of the images so they be okay when I print. iPhoto doesn't give you the option to reduce the size of the image. Can I through another application do some sort of workaround to get the images smaller with some sort of background to workaround this?
    I wish iPhoto had a little more flexibility in this area.
    MacBook Pro   Mac OS X (10.4.8)  

    iPhoto "books" require you image be 300 DPI (dots per inch).
    Your Mac display is 72 dpi so your 1024X768 image would need to be made 4 times smaller in size. But this will still not get you 300 dpi and iPhoto will still display a warning no matter what.
    GraphicConverter ($35) can change the dot per inch (it says ppi pixels per inch) in your image. It will also reduce it is size by a factor of 4 (very small image).
    If you have the original images it would be better to scan them again and set the file to become 300 dpi. More work but larger prints in your book.

  • Cannot import photos to iphoto or aperture directly from android

    When I connect my android phone to my macbook pro, I can see the volume and browse just fine using finder. However, when I try to import from iphoto or aperture, no images are displayed. I can see my android device listed, just no items listed to import.
    I can copy images to a folder on my hard drive, then import them. But that is a pain. Please help!
    I have an HTC G2 with android 2.3, and Lion installed on my macbook pro.

    For suggestions and discussion please read the thread at:
    https://discussions.apple.com/thread/2718752?start=0&tstart=0

  • Image quality of slide shows using Aperture 3 seems inferior to iPhoto '08

    I haven't previously used Aperture. I've been using a copy of iPhoto '08 for several years. I've shot everything in RAW for the last several years and process it in
    DXO on my Mac Pro (3 1/2 years old with 7 gigs of RAM). I then load the jpegs into iPhoto '08.
    I downloaded Aperture 3 yesterday, and it certainly is impressive in what it can do for improving existing jpegs. I think I could do most touch-ups with Aperture
    instead of Photoshop 3. Because of some glitch, I couldn't load or link to my 37,000 images from iPhoto but I did export about 4000 images as full jpegs into
    a separate file and then imported these images into Aperture. Touch-ups are an order of magnitude better that trying to use iPhoto to do the same.
    I'm an amateur and aside from a fair amount of print making and a few thousand images uploaded to a new Picasa account
    http://picasaweb.google.com/jamesn88888
    I enjoy a lot of my images via slide shows on my 23" Apple monitor, usually sequenced at 3 seconds per slide.
    Comparing slide shows of identical jpegs run with iPhoto '08 and then with the files uploaded to Aperture 3 there is a very subtle loss of definition with Aperture. It's not so
    obvious when viewing relatively large detail but is is very noticeable when running slides containing small detail. When both of these programs are just used to display static images full screen I note no difference in readability. Someone suggested that I check the preferences for preview displays. Sure enough, it was set for relatively low quality. I decided to re-do all 4000 images maximum preview display quality.
    Using the import settings that came already selected on the trial software, the total size of my
    Aperture 3 trial library was a little over 25 GB. The quality of the slide shows did not approximate
    the quality of the slide shows of the identical jpegs included in my iPhoto '08 library.
    I therefore re-processed all of the previews to the "don't limit" in the photo preferences. The total size of my Aperture 3 trial library grew from 25GB to 41.37GB, an increase of 17 GB. With 3926 jpegs in the library that means the average additional size added to each preview image was 4.33 Megabytes. Inasmuch as the original jpeg images that I imported into Aperture 3 were more in the neighborhood of 1.7 to 3.5 Megabytes each (I have DXO output most jpegs @ 90% quality- fine for my purposes), this is an extreme measure to take in order to be able to use Aperture 3 the same way that I used iPhoto '08. In comparing slide shows between the two applications I still get the feeling that there is a very slight loss in acutance when viewing the slide shows. iPhoto still wins out.
    I think that I'm better off staying with iPhoto and continuing to do the RAW processing with DXO and slight file modifications with iPhoto. More elaborate changes can continue to be done using Photoshop 3 and Viveza. It's a shame, because I really like the image processing abilities that are contained in the new Aperture.
    Have any of you compared slide show views on your computer between Aperture and iPhoto?
    Is there any workaround for best slide show viewing- importing or referencing my existing iPhoto library of 37,000 images does not work for me. My copy of iPhoto 7.1.5 get the message that Aperture cannot import or link to iPhoto earlier than 7.1.5 (?)

    I think I've solved my problem with a Google Search. I came across a free slide show generator
    (contributions requested) that shows much higher quality slide shows than either iPhoto or Aperture 3.
    You click on a folder of jpegs and it almost immediately generates thumbnails and within a few seconds
    I can be viewing a full screen, tack sharp, slideshow of all of the files in the folder. Much sharper than
    I'm used to seeing.
    I think I'll keep the Aperture 3 and use if for the purpose it's intended for in the future. I'll also redo the
    image preview files to the small size it started with and then I'll copy all of the files I'm interested in from
    iPhoto into a separate folder on another disk. I'll use Aperture to catalog and to perform image manipulations
    on but I won't try to use it as an iPhoto replacement. I don't think I'll be using iPhoto much as an image
    viewer in the future either after I finish moving my favorite pictures to the Phoenix Slides folder.
    The name of the free program is Phoenix Slides. It's free to download and try, free to keep (though I
    think you'd want to pay the small amount requested) and fast. My pictures have never looked so good
    before.
    http://blyt.net/phxslides/
    Message was edited by: Jimbo2001

  • Print quality difference between iphoto and aperture...?

    when ordering books, is there a print quality difference between using iPhoto and Aperture? or are they sent to the same lab?
    it's possible i may have some setting wrong, but when i order a book using iphoto, i never really feel the quality is that great. it's good, i just feel it could be a lot better. the print quality sort of reminds me of newsprint, albeit high quality newsprint. similar sized prints made at home on my basic 3-in-1 printer look better.
    thanks...

    Previews are what you view on your display. When you import a photo into Aperture (and I'm pretty sure iPhoto as well), your computer automatically generates a preview for quick viewing. The original images are stored in your library, but it is the preview that you see.
    In Aperture, you are able to set the size and quality of these previews. When sharing photos between Aperture and iPhoto, the process is as follows:
    Let's say that your images are stored in Aperture, but you also want to be able to view them in iPhoto without taking up too much room on your hard drive. Essentially, if you were to import the originals into iPhoto as well, you would be storing two exact, yet separate copies of the same image on your hard drive. As you are aware, with large images (whether JPEG's, and especially RAW) this would put quite a tax on your storage capacity after not too long.
    So, you have your images in one or the other (in this case Aperture), but you want to play around with them in iPhoto. What you can do, is open iPhoto, go to the File menu and then select, Show Aperture Library. This will open a window with all of the contents of your Aperture Library. You can then drag any images you want into iPhoto . The only thing is, you are not dragging the original JPEG's, but rather, the previews of those images. If you have those previews set to a lower quality (again for capacity concerns), you will only have lower quality and lower detailed images in iPhoto. These images might not be ideal, or even suitable for printing high quality prints. The previews that you generate in Aperture though can be adjusted to be extremely high quality with no size limits.
    My thinking was that since you mentioned Aperture, it sounded like you had experience with working with it and with ordering a photo book through Aperture. I guess you were saying that you ordered via iPhoto, weren't happy with the quality and were wondering if Aperture created books were better.
    Anyway, if this is the case, I cannot answer that for you. I have never ordered a book through Aperture. If the quality of your images is good, you should be able to get a decent product no matter where you order it from. There is not doubt that the materials used and the print shop that does the work makes a difference, but if your images are good, you should still get a decent product through iPhoto. Perhaps iPhoto isn't the way to go though if you have had poor experiences with them.
    If you haven't used Aperture yet, I would highly recommend it though aside from the photo book aspect of this thread. It is a stellar product.
    I hope this helps.
    Message was edited by: macorin

  • When making a photo book, my iPhoto freezes during uploading the book to the store after assembly.  I have attempted this 4 times now and I don't know what to do! I know the file size is massive due quantity of large images. How can I get past this?

    When making a photo book, my iPhoto freezes during uploading the book to the storey.  I have attempted this 4 times now and I don't know what to do! I know the file size is massive due quantity of large image files, but I don't want to reduce the image file size and compromise quality in the book. How can I get past this?
    My macbook air is os x 10.9, using iPhoto 11 9.5 (902.7).

    Try Old Toad's solution here:   See   Re: iphoto : upload impossible to print a book
    Try to boot into Safe Mode and order this way, or sign into a different user account and try to order as a different user.
    Léonie

  • How to transfer an iPad iPhoto Mobile album to iPhoto or Aperture on my desktopMac???

    I have several photogaphs I downloaded from my camera directly to my iPad 3 and edited using iPhoto Mobile. 
    I now want to transfer these edited images to my desktop to further edit and refine in Aperture BUT the only images that come up when I connect my iPad and Aperture (or iPhoto) are the original images....none of the thumbnails of the edited images appear to enable an easy export? 
    Anyone know how to do this?
    C

    Read this user tip for all of the information that you need to know about how to move everything from the iPad to the Mac. It was written as an iPhone guide, but the process works the same way with an iPad.
    https://discussions.apple.com/docs/DOC-3141

  • IPhoto Viewer Image Quality

    Working in iPhoto, I have uploaded all of my holiday pics to edit before making a photobook.
    Using the Adjust features I have been sharpening them up and setting the color balance, etc; however when I export the image as a JPG (using best quality settings) the image comes out a lot more crisp than shown in iPhoto. You can see this from the attached image where the left is the exported image shown in Preview, and the right is the exact same image displayed in the iPhoto viewer...
    Don't get me wrong, i'd prefer it to be this way than the opposite, but now I'm aware of it it's really straining my eyes as I'm going through my pics in iPhoto (I keep wanting to clean my glasses!), and I'm worried that I'm going to over-sharpen pics.
    Does anyone know why iPhoto shows a seemingly lower-quality image in the viewer, and whether this can be changed in a setting?
    Many thanks in advance!

    Welcome to the Apple Discussions. Are you cropping your photos to the 16:9 ratio before creating the widescreen slideshow in iPhoto and exporting them to iDVD for a widescreen project? Most digital camera images are in the 4:3 size ratio and don't convert well to the widescreen. Also check the aspect ratio that you're playing the dvd in as that can have an effect on how the slideshow looks.
    Also remember that the images going to iDVD will be reduced to 640 x 480 (normal TV) and slightly larger for the widescreen version. So the pixel dimensions of the original image are not that relevant.
    Happy Holidays
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto 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), 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. It's compatible with iPhoto 08 libraries and Leopard. 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.

Maybe you are looking for