What kind/size/format/color space photo for making books?

Let me make that simpler. I have Tiffs on a drive I want to drag into iPhoto to turn into a book. Should I use tiffs? Jpgs? 16 or 8 bit? RGB or sRGB? Maybe iPhoto makes them what they need to be when I order a book?
I haven't tried this at all yet so maybe there is no question at all. I'll have iPhoto 8 by the time I do this loaded in the 15" MBP
Thanks
Neil

If you already have the photos as tiffs you can use then if you'd like and save having to convert them to jpgs. As Larry pointed out the sRGB profile is recommended by Apple. I think 8 bit is sufficient. 16 bit doubles the file size and I don't think it would make any difference. The book gets created as a pdf for uploading and printing. As for size, pixel wise, the larger the better. The pdf is configured at 300 dpi so anything over that is wasted. If you plan on any full page photos then for the optimal dpi, 300, the image would be 3300 x 2550. Most of my books have been made with photos at 2816 x 2112 and I've had no problems. I've not used any one-photo-per-full-page layouts however.
However, if you're worried about disk space on your MBP then I'd convert them to jpgs as Larry suggested.
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.

Similar Messages

  • Color space support for png files

    kindly suggesting :
    color space support for png files, requiring the support (read/write) of the chunks: iCCP, cHRM, gAMA, sRGB

    Hi ChrisT,
    Thanks for the suggestion. I went to:
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4063&lc=en&cc=us&dlc=en&sw_lang=&product=4148...
    Which is the software update page for my model. I see 10 items under Software Solutions, 8 of which are just video tutorial updates, not actual application updates (and none of those are for the Photo App). The two application updates are:
    HP TouchSmart Recipe Box Application Update
    HP Support Assistant Application Update
    So, are you saying that PNG file types are supported in some versions of the Photo App and I don't have the correct version? Or in other words, what am I missing?
    Cheers,
    D

  • Color space question for photoshop cs on mac os10

    I'm sure this has been beaten to death here before. I've been dealing with color space issues for months now, and I'm about at my wits end.
    I realize that I should be saving in sRGB in order to get the same looking photo on the web that I get in photoshop. I go image-mode- convert to profile- destination space- profile: srgb profile. I've tried saving for web. I check "ICC" when I do that. When I just save an image as a jpeg (from a tiff), I check the box that says, "embed color profile." Still, my images look washed out on my website (which I made with iweb)- which I'm trying to put my images in a new web interface (flash palette) and my images STILL look washed out. The weird thing is, I NEVER have this issue when I upload images to photobucket or to the photography forum that I frequent.
    What the heck am I doing wrong??
    Thanks,
    Hope

    >> images are still a bit washed out with a warmish/ yellow cast to them, particularly, my black and white images
    Here is a simple test to help evaluate if the monitor profile is reasonably good:
    Open a RGB file in Photoshop (flatten if not already flattened).
    Press M key> Drag a selection> Com+Shift+U (Desaturate).
    Com+Z (to toggle back and forth).
    If the unsaturated selection looks neutral you've got a reasonably fair monitor profile.
    If selection has color casts (not neutral) -- you have a bad monitor profile
    +++++
    Here is a simple test to help evaluate if a bad monitor profile is whacking out your Photoshop color:
    Monitors/Displays (control panel)> Color> highlight AppleRGB or sRGB (don't run Calibrate), quit and reboot.
    If the Photoshop colors are back under control, then the problem was most surely a bad monitor profile go back into Monitors/Displays> Color and Calibrate a good profile highlight (load) sRGB, or preferably, the monitor's OEM profile as a starting point.
    If you are using a puck, it is likely defective; or your monitor hardware is the culprit...search it on Google by model number

  • To retain color space value for Monochrome images during flattening.

    In our project, we are extracting image content from PDF file and doing some raster operation by using LeadTool and then flattening the processed image in PDF file.
    Input PDf file: One page which has monochrome image
    For extracting image content from PDF file, we are using below Acro Plugin API:
    AVConversionConvertFromPDFWithHandler
    After this, we will perform some raster operations by using LeadTool and then flattening will happen.
    While doing flatten we are performing below operations in sequence:
    1. Set bitspercomponent  =1.
    2. Create a new color table using DeviceRGB.
    3. Create image by using below Acro Plugin API:
    pdeimage = PDEImageCreate(&attrs, sizeof(attrs), &matrix, 0, cols1, NULL, &fil, asstm, NULL, 0);
    4. Add image in PDF content.
    Now flattening is successful, but monochrome(Original Image format) is changed to RGB. We want to retain the color space(DeviceGrey).
    We have tried the below solution to retain the color space:
    1. Using the old image's color space value for new image creation. But this gives inverted color(Black to White and vice versa)
    Please help us to retain the color space while flattening.

    We are using JPG file format.
    Please find below the code portions which we used to add image in PDF file,
    //Read Image Data
    ========================================================================================== ==================
    ASBool ret = TRUE;
    // analyze img
    ASInt32 index = 0, quadSize = 0;
    BITMAPFILEHEADER* bmfh = NULL;
    // BITMAPFILEHEADER
    if(  !bQuadSize )
      bmfh = (BITMAPFILEHEADER*)img;
      index += sizeof(BITMAPFILEHEADER);
    // BITMAPINFOHEADER
    BITMAPINFOHEADER* bmih = (BITMAPINFOHEADER*)(img+index);
    index += sizeof(BITMAPINFOHEADER);
    // RGBQUAD
    if( !bQuadSize )
      quadSize = bmfh->bfOffBits - sizeof(BITMAPFILEHEADER) - sizeof(BITMAPINFOHEADER);
    else
      quadSize = size -  bmih->biSize -  bmih->biSizeImage;
    ASInt32 rgbquadNum = 0;
    char* quad = NULL;
    if (quadSize > 0)
      rgbquadNum = quadSize/sizeof(RGBQUAD);
      quad = (char*)(img+index);
      index += quadSize;
    // Image
    //ULONG imgSize = size - bmfh->bfOffBits;
    char* image = (img+index);
    DURING
       if(!pd)
        E_RETURN(FALSE);
       PDPage pp = PDDocAcquirePage(pd, page-1); // Get Page(PDPage) of specified page number
       PDEContent pdeContent = PDPageAcquirePDEContent(pp, gExtensionID); // Get PageContent(PDEContent)
       ASInt32 numElems = PDEContentGetNumElems(pdeContent);  // Get PageContent num
       // Check BitMap width, height, biXPelsPerMeter, biYPelsPerMeter changed
       ASFixedRect mb;
       PDPageGetMediaBox(pp, &mb);
       ASFixedRect chgMediaBox;
       memset(&chgMediaBox, 0 , sizeof(ASFixedRect));
       if (paperSizeChangeType == PAPERSIZE_SIZESPECIFICATION)
        chgMediaBox.right = width;
        chgMediaBox.top = height;
       // Get PDEImage's Attributes & Filters & ColorSpace from Old Image in PDF file
    ========================================================================================== ===================================
       PDEElement pdeElement;
       ASInt32 importIndex;
       ASInt32 type;
       PDEImageAttrs attrs1;
       PDEColorSpace cols1;
       //ASAtom colname;
       PDEFilterArray fil1[20];
       ASInt32 filNum1;
       ASFixedMatrix matrix1;
       bool isTransformedPage = false; //EV2.8.02000_19651_Retain color space_20141016
       for (int i = 0; i < numElems; i++)
        pdeElement = PDEContentGetElem(pdeContent, i);
        PDEObject obj=_objHelper.TraversePDPageContentsImage((PDEObject)pdeElement);
         if(obj == NULL)
          continue;
         pdeElement= (PDEElement)obj;
        type = PDEObjectGetType((PDEObject)pdeElement);
        if (type == kPDEImage)
         // Get Attr
         PDEImageGetAttrs((PDEImage)pdeElement, &attrs1, sizeof(PDEImageAttrs));
         // Get ColorSpace
         cols1 = PDEImageGetColorSpace((PDEImage)pdeElement);
         // Get Filter Array
         filNum1 = PDEImageGetFilterArray((PDEImage)pdeElement, fil1);
         // Get ASFixedMatrix
         PDEElementGetMatrix(pdeElement, &matrix1);
         //EV2.8.02000_19651_Retain color space_20141016 - Start
         if (matrix1.a < 0 || matrix1.b < 0 ||
                        matrix1.c < 0 || matrix1.d < 0 ||
                        matrix1.h < 0 || matrix1.v < 0)
          isTransformedPage = true;
         //EV2.8.02000_19651_Retain color space_20141016 - End
         // Set Import and Delete Index
         importIndex = i;
         break;
       // Create image data (for PDEImage)
    ========================================================================================== =================================
       ASInt32 bitPerComponent = bmih->biBitCount;
       ASInt32 bitWidth = 0;
       ASInt32 width1 = bmih->biWidth;
       ASInt32 height1 = bmih->biHeight;
       // Create image size
       if (bitPerComponent == 1)
        if (width1%8)
         bitWidth = (width1/8) + 1;
        else
         bitWidth = width1/8;
       else if (bitPerComponent == 4)
        if (width1%2)
         bitWidth = (width1/2)+1;
        else
         bitWidth = width1/2;
       else if (bitPerComponent == 8)
        bitWidth = width1;
       else if (bitPerComponent == 32)
        bitWidth = width1*4;
       else // if (bitPerComponent == 24)
        bitWidth = width1*3;
       ASInt32 imgSize4Acrobat = height1 * bitWidth;
       char* image4Acrobat = (char*)ASmalloc(imgSize4Acrobat);
       if( image4Acrobat == NULL )
        E_RETURN(FALSE);
       memset(image4Acrobat, 0, imgSize4Acrobat);
       // Create image
       ASInt32 nokori = (bitWidth)%4;
       ASInt32 bitWidth4hokan = 0;
       if (nokori)
        bitWidth4hokan = bitWidth + (4-nokori);
       else
        bitWidth4hokan = bitWidth;
       ASInt32 hbw = 0;
       ASInt32 hbw4hokan = 0;
       if (bitPerComponent == 1)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         memcpy((image4Acrobat+hbw), (image+hbw4hokan), bitWidth);
       else if (bitPerComponent == 4)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         memcpy((image4Acrobat+hbw), (image+hbw4hokan), bitWidth);
       else if (bitPerComponent == 8)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         memcpy((image4Acrobat+hbw), (image+hbw4hokan), bitWidth);
       else if (bitPerComponent == 32)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         for (int kk = 0; kk < bitWidth; kk += 4)
          *(image4Acrobat+hbw+kk) = *(image+hbw4hokan+(kk+3));
          *(image4Acrobat+hbw+kk+1) = *(image+hbw4hokan+(kk+2));
          *(image4Acrobat+hbw+kk+2) = *(image+hbw4hokan+(kk+1));
          *(image4Acrobat+hbw+kk+3) = *(image+hbw4hokan+(kk));
       else
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         for (int kk = 0; kk < bitWidth; kk += 3)
          *(image4Acrobat+hbw+kk) = *(image+hbw4hokan+(kk+2));
          *(image4Acrobat+hbw+kk+1) = *(image+hbw4hokan+(kk+1));
          *(image4Acrobat+hbw+kk+2) = *(image+hbw4hokan+(kk));
       //Invert Image Data
    ========================================================================================== ================================
       for(int it = 0; it < imgSize4Acrobat; it++)
          image4Acrobat[it] = 255 -image4Acrobat[it];
       // Open Image Data
    ========================================================================================== ================================
       ASStm asstm = ASMemStmRdOpen(image4Acrobat, imgSize4Acrobat);  
       // Create PDEImage Attribute etc.
    ========================================================================================== ================================
       PDEImageAttrs attrs;
       memset(&attrs, 0, sizeof(PDEImageAttrs)); // necessary
       attrs.width = width1;
       attrs.height = height1;
       if (bitPerComponent == 1) {
        attrs.bitsPerComponent = 1;
        if (rgbquadNum) {
         attrs.flags = kPDEImageIsIndexed | kPDEImageExternal; // Indicates image uses an indexed color space.
        } else {
         attrs.flags = kPDEImageExternal; // Indicates image is an XObject.
         // B&W
       } else if (bitPerComponent == 4) {
        attrs.bitsPerComponent = 4;
        if (rgbquadNum) {
         attrs.flags = kPDEImageIsIndexed | kPDEImageExternal; // Indicates image uses an indexed color space.
        } else {
         attrs.flags = kPDEImageExternal; // Indicates image is an XObject.
       } else if (bitPerComponent == 8) {
        attrs.bitsPerComponent = 8;
        if (rgbquadNum) {
         attrs.flags = kPDEImageIsIndexed | kPDEImageExternal; // Indicates image uses an indexed color space.
        } else {
         attrs.flags = kPDEImageExternal; // Indicates image is an XObject.
       } else if (bitPerComponent == 32) {
        // not support (acrobat)
       } else { // (bitPerComponent == 24)
        attrs.flags = kPDEImageExternal;  // Indicates image is an XObject.
        attrs.bitsPerComponent = 8;
       // matrix
       ASFixedMatrix matrix;
       memcpy(&matrix, &matrix1, sizeof(matrix1));
       if (paperSizeChangeType == PAPERSIZE_SIZESPECIFICATION)
        matrix.a = chgMediaBox.right;
        matrix.b = 0;
        matrix.c = 0;
        matrix.d = chgMediaBox.top;
        matrix.h = 0;
        matrix.v = 0;
       // Filter
       PDEFilterArray fil;
       memset (&fil, 0, sizeof (PDEFilterArray));
       PDEFilterSpec spec;
       memset (&spec, 0, sizeof (PDEFilterSpec));
       memcpy(&fil, &fil1, sizeof(PDEFilterArray));
       CosDoc cosDoc;
       CosObj cosDict;
       // Build the CosObj for the filter specification
       cosDoc = PDDocGetCosDoc(pd);
       cosDict = CosNewDict(cosDoc, false, 2);
       CosDictPut(cosDict, ASAtomFromString("K"), CosNewInteger (cosDoc, false, -1));
       CosDictPut(cosDict, ASAtomFromString("Columns"), CosNewInteger (cosDoc, false, width1));
       //memset the filterspec so there are no garbage values if we leave members empty
       spec.encodeParms = cosDict;
       spec.decodeParms = cosDict;
       spec.name = ASAtomFromString("CCITTFaxDecode"); 
       fil.spec[0] = spec;
       // Create PDEImage
    ========================================================================================== =================================
       PDEImage pdeimage;
       pdeimage = PDEImageCreate(&attrs, sizeof(attrs), &matrix, 0, cols1, NULL, &fil, asstm, NULL, 0);
       // Delete PDEImage at importIndex(==j) of page -> Delete old image in PDF file
    ========================================================================================== ====================
       PDEContentRemoveElem(pdeContent, importIndex);
       // Add PDEImage
    ========================================================================================== ==========================
       PDEContentAddElem(pdeContent, importIndex, (PDEElement)pdeimage);
       PDPageSetPDEContent (pp, gExtensionID);
       PDPageReleasePDEContent(pp, gExtensionID);
       // Release object
       PDERelease((PDEObject)pdeimage);
       PDPageNotifyContentsDidChangeEx(pp, TRUE);
       PDPageRelease(pp);
       ASStmClose(asstm);
       if (image4Acrobat)
        ASfree(image4Acrobat);
       if (lookupTable)
        ASfree(lookupTable);
      HANDLER
       ret = FALSE;
      END_HANDLER
    return ret;

  • Color Space info for images

    Hi all,
    I would like to show the color space details for an image. Do you know what field mapping is required?
    Thanks,
    A.

    >> images are still a bit washed out with a warmish/ yellow cast to them, particularly, my black and white images
    Here is a simple test to help evaluate if the monitor profile is reasonably good:
    Open a RGB file in Photoshop (flatten if not already flattened).
    Press M key> Drag a selection> Com+Shift+U (Desaturate).
    Com+Z (to toggle back and forth).
    If the unsaturated selection looks neutral you've got a reasonably fair monitor profile.
    If selection has color casts (not neutral) -- you have a bad monitor profile
    +++++
    Here is a simple test to help evaluate if a bad monitor profile is whacking out your Photoshop color:
    Monitors/Displays (control panel)> Color> highlight AppleRGB or sRGB (don't run Calibrate), quit and reboot.
    If the Photoshop colors are back under control, then the problem was most surely a bad monitor profile go back into Monitors/Displays> Color and Calibrate a good profile highlight (load) sRGB, or preferably, the monitor's OEM profile as a starting point.
    If you are using a puck, it is likely defective; or your monitor hardware is the culprit...search it on Google by model number

  • What kind of storage we should use for oracle database?

    Hi
    thank you for reading my post
    Can some one please explain what kind of hardware storage is common for oracle database, and kindly please provide some explanations about the reason that we can use such storage?

    Perhaps you're thinking about RAID, an acronym for Redundant Array of Inexpensive Disks? That's not specific to Oracle by any means, it's a very common way of setting up multiple disks in a server so that the failure of one or two disks doesn't cause the system to lose any data. If you're dealing with a server of any size or any sort of SAN or NAS device, it is going to use RAID, the question is which form of RAID (there are different sorts of configurations with different levels of cost, performance, and durability).
    Justin
    orafad was a faster typist than I.
    Message was edited by:
    Justin Cave

  • What kind of mac would I need for Nexflix, basic search and email? Also, sounds silly, but can I connect an HDMI from Mac to tv?

    What kind of mac would I need for Nexflix, basic search and email? Also, sounds silly, but can I connect an HDMI from Mac to tv?

    Just an FYI.  The Macs named PowerMac date from early 2006 and before.  Use this tip to discover where to post once you get your Mac:
    Site map of Communities and Categories
    The cheapest Mac available new is a Mac Mini.   It is no bigger than many an external hard drive.  But the screen and keyboard and mouse must be purchased separately.  They support USB and Bluetooth keyboards and mice, and pretty much any DVI, HDMI, or displayport display.   Although the iMac is certainly an attractive option if all you want to deal with is deciding on a printer.   I still recommend getting an Apple USB keyboard for the occasional times you may need to troubleshoot startup issues.  Normally not a problem, but as it gets older some issues can be fixed at startup or diagnosed at startup.

  • What kind of antivirus do you suggest for mac OS X Maverics?

    What kind of antivirus do you suggest for OS X Maverics?

    OS X already includes everything it needs to protect itself from viruses and malware. Keep it that way with software updates from Apple.
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "speed up", "clean up", "optimize", or "accelerate" your Mac. Without exception, they will do the opposite.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources. Illegally obtained software is almost certain to contain malware.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iTunes or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose. Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Disable Java in Safari > Preferences > Security.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    Block browser popups: Safari menu > Preferences > Security > and check "Block popup windows":
    Popup windows are useful and required for some websites, but popups have devolved to become a common means to deliver targeted advertising that you probably do not want.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever see a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. To date, most of these attempts have been pathetic and are easily recognized, but that is likely to change in the future as criminals become more clever.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

  • What kind of Power Supply to buy for my Power Mac G5?

    Hello!
    After trying several things, and poking around several forums on the net I have become convinced that my Power Mac G5 needs a new Power Supply.  My big question is how do I know what kind of Power Supply to get for it?
    My computer is one of the last of the Power Mac G5's with Motorola chips; it has the dual 2.7 GHz processor core.  I know the install will be tricky, but I feel confident I can do it.
    The Apple store doesn't sell these Power Supplies any more, and our other local Apple repair store said they'd have to "match up the serial numbers" in order to find a new Power Supply... but they also wanted to charge me $200.  (I'm a poor high school science teacher and would rather do it myself.)
    Any words of wisdom/explanations on how to find the right type of Power Supply for my computer would be greatly appreciated!!!

    B_Free wrote:
    Thank you both, Mac Man JW & Old Comm Guy!
    My problem has been that the computer won't start at all.  When I press the button on the front panel, I hear the click of a relay (like normal) but then nothing happens... no fans spinning up, no hard drive spinning up... silence. 
    When I open the side panel and press the button, I can see that the 2 cooling fans twitch just a little bit but they immediately stop.  The only other thing I can see is that the red LED 7 light comes on, and according to everything I've read that light means 'contact an Apple representative.'
    This started about 2 weeks ago.  Hadn't had any trouble before then... if there were any warning signs I sure didn't see them.
    If you think it might be something else I'm definitely willing to listen!
    Did you check the liquid cooling system inside your G5 for leaks? That can make your G5 not start up as well. Look at this link: http://www.everymac.com/systems/apple/powermac_g5/faq/powermac-g5-liquid-cooling -info-leaks-issues.html  

  • What kind of iphone5 shoud I buy for using in China? The contract free, unlocked one listed for $649 is OK for me?

    What kind of iphone5 shoud I buy for using in China? The contract free, unlocked one listed for $649 is OK for me? Thanks!

    China phones should be purchased there as they use unique carrier settings. Phones from other countries may not work properly.
    Also, the iPhone warranty is not international and won't be valid outside the country where the phone was purchased.

  • What kind of wireless card I need for my Power Mac G5 (late 2005) Dual 2 GH

    hi there,
    I have for sometime now a "Power Mac G5 (late 2005) Dual 2 GHz PowerPC G5", and recently I have been thinking to get an Airport extreme wireless card with a bluetooth on it, which could work on my machine.
    I have already try to deal with apple representatives and Apple sales people to give me a hand on the matter and so far is been a nightmare to approach this guys, tired of wasting time and effort, so that is way I am posting a topic on this section to see if you guys could give a hand on the matter.
    All what I would like to know is what kind of wireless card I need for my Power Mac G5 (late 2005) Dual 2 GHz PowerPC G5 (version 10.4.11) and where I could buy one on line to install myself.
    This is the mac unit I have.
    Dual 2 GHz PowerPC G5.
    Hardware Overview:
    Machine Name: Power Mac G5
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 2
    CPU Speed: 2 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 4.5 GB
    Bus Speed: 1 GHz
    Boot ROM Version: 5.2.7f1
    Thanks for you time.
    regards
    Toyko koyko

    You're welcome. Funny how Apple works isn't it? If it's any consolation, that Airport/Bluetooth card doesn't show up on the Apple U.S. store either. I don't think they ever intended it to be a user installable part, so perhaps that's why they don't offer it for sale. Do you have any Apple Authorized Service providers in your area? I'd think they'd be able to order the card as a replacement part.
    Can you give a little more detail or a link to the gadget you're referring to? It sounds like a USB dongle to enable Wi-Fi, but that must be a third party solution, since I don't believe Apple ever offered something like that.

  • What kind of charger do I need for my macbook core 2 duo 2 ghz.

    What kind of charger do I need for my macbook core 2 duo 2 ghz. I just bought one used that didn't come with a charger.

    There's 8 different models of MacBooks that are 2.0Ghz. To see which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info (and then System Report if you’re running 10.7 Lion).When System Profiler comes up check the Model Identifier.
    You can get a new power adapter on eBay forabout $20
    http://www.ebay.com/sch/i.html?_nkw=macbook+power+adapter&_sacat=0&_sop=12&_dmpt =Apple_Laptops&_odkw=macbook+power+adapter&_osacat=111422&_trksid=p3286.c0.m270. l1313

  • HT1382 what kind of format is my song downloads in

    what kind of format is my song downloads in

    Music downloads from the iTunes store will be in .AAC format

  • What is the best sound conversion software for making apple sound files?

    What is the best sound conversion software for making apple sound files?

    Depending on the file formats, you may not have to do any conversion.
    The following shows what the native Quicktime Player Supports:
    http://support.apple.com/kb/HT3775
    and Quicktime Player is pretty much the core for all Apple app
    playback.
    And if that doesn't cover it, there are other players, many of
    which are free, that may cover what you need (WINAMP, VLC,
    Songbird etc.).

  • What are the best imovie, mpeg4 settings for making dvds?

    What are the best imovie, mpeg4 settings for making dvds?

    • iMovie'08 to 11
    - Share to Media Browser - AND as Large (or Medium) - HD or other resolutions degrades the final result
    iMovie'08 to 11 are not the tools of choise if quality is important as they all degrade the picture by discarding every second line when going from, Event's to Project's and this can not be mended.
    iMovie HD6 and FinalCut delivers 100% of what any DVD-Authoring program needs.
    • DVD is as standard MAX - intrelaced SD-Video - and can not be any better than this
    • iDVD does only care about TIME / Duration as
    iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1) and iDVD 6 has the two last ones
    • Professional Quality
    (movies + menus up to 120 min.) - BEST (but not always for short movies e.g. up to 45 minutes in total)
    • Best Performances
    (movies + menus less than 60 min.) - High quality on final DVD (Can be best for short movies)
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6)
    (movies + menus up to 120 min.) - slightly lower quality than above
    Menu can take 15 minutes or even more - I use a very simple one with no audio or animation like ”Brushed Metal” in old Themes.
    About double on DL DVDs.
    • iDVD Does Region = Zero (to be played everywhere)
    • Frame rate - DVD can be in two types PAL (25fps) and NTSC (29.97fps)
    If Your material is 30fps then keep to NTSC (29.97fps), if 25fps keep to PAL.
    One can feed iDVD the other frame rate - BUT RESULTING DVD WILL BE BAD
    I use JES_Deinterlacer (free on Internet) to convert all material to the same and final frame rate
    • NTSC - US etc
    • PAL - EU etc
    Yours Bengt W

Maybe you are looking for

  • 10.5.6 disaster

    well, what a disaster 10.5.6 update via Software update failed. Since then I have been experiencing almost everything, from permission problems, Mail and iPhoto crashes, applications who use carbon lib not working anymore, Compressor says it's not be

  • Goldmine Contact Management and using Verizon as SMTP server

    One of our sales reps must use his personal Verizon settings to send his email in Goldmine.  His user name and password are correct and work with Verizon web mail.  When using his Verizon SMTP settings in Goldmine, server keeps rejecting as bad user

  • Printing on UNIX OS using Java

    Hi All, Here is the detailed situation: 1. We are running Oracle Application Server and Oracle Portal on an HP UX box in production. 2. We are developing using jDeveloper. 3. We have developed an application that generates a PDF file and then prints

  • Warning or Error in SAP NetWeaver XI installation..

    I have windows 2003 enterprise edition with SP1 i have completed installing Central instance now when i try to install the DB instance i get the following warning.. <b>Warning after checking DB instance on "systemname" Only enterprise edition is supp

  • Media Manager will not install

    After loading BB Tour 9630 Desktop manager on my computer I can't complete install of media manager. I see files being unzipped and then startup in task bar but then goes into neverland. I have downloaded latest version of Desktop but that didn't hel