HELP!: Question on importing images into from nested folder and subfolders

Hi,
I have a bunch of files on a backup drive and I was wondering if it will be possible to have iPhoto 08 import all the files from the top level folder on down without having to hilite all individual files in each folder and then choose IMPORT??
What is the best way to do this?

Apple indicates that it users the sRGB profile for it's printing. Some cameras have a profile very close to the sRGB, my Canon for one. However, some use the Adobe profile which is a much broader profile and produces darker prints on my setup (which is geared for sRGB).
I've calibrated my monitor to the sRGB profile and set my editor of choice, Photoshop CS3, to manage the color and use the same sRGB profile. It's just way of getting closer to WYSIWYG when it comes to prints, books, etc. I emailed Apple about material quality on books and how to prepare photos and this is what I received back:
I contacted Apple and asked for information that I could pass on. Here's the reply I received from Apple:
"Thank you for contacting the Apple Print Products Customer Service.
I understand that you would like to know the printing process that is used and the color mode the files should be in, so you can better advise users in the iPhoto forum.
iPhoto version 4 or later, allows you to import and print files through the Apple Print Product service as RGB, grayscale, or CMYK color space. JPEG files with RGB color space are recommended for best results.
While iPhoto 2 can import files of various formats, including RGB color, grayscale, and CMYK, this version requires JPEG files with RGB color space when printing photos and books.
For more information regarding iPhoto 2, please visit the following article:
iPhoto: Color, Black and White Prints Appear Garbled or Distorted
For more information regarding iPhoto 5, please visit the following article:
http://docs.info.apple.com/article.html?artnum=165501
Here are some of the technical specifications for the books, cards, and calendars. I hope this gives you an idea about their quality and form.
BOOKS
All iPhoto books are printed using acid-free paper for long-lasting image quality. The photos are printed at a high resolution (300DPI if you use iPhoto 6). There is no external modification--such as sharpening or contrast adjustment--of the photos; what you see in the application is what is printed in the book.
Hardcovers Books
The cover is hard-bound and covered in linen. You select the linen color during the book-ordering process. The hardcover books have a solid, stiff binding that is glued and crimped. The internal pages, measuring 8.5 x 11 inches, are printed on McCoy 100# Text Gloss paper stock.
Softcover Books
The softcover books come in three sizes:
- Large 8.5 x 11 inches
- Medium 6 x 8 inches
- Small 2.6 x 3.5 inches
All of the softcover books have internal pages that are printed on McCoy 100# Text Gloss paper stock. The large softcover book has a white cover (Kromekoteplus Folding Cover, 16 point) with a cutout on the front that reveals the cover-page photo in the book. The covers for the medium and small softcover books have the cover image and title printed directly on the cover. All of the softcover books have a glued binding and feature a thick cover of McCoy 100# Cover Gloss paper stock.
CARDS
All cards are printed on McCoy 120# Silk Cover paper stock. The postcards measure 4 x 6 inches, and the greeting cards measure 5 x 7inches.
CALENDARS
All calendars measure 8 x 10 inches and are printed on McCoy 100# Silk Cover paper stock.
To ensure the best print quality, we have chosen to use Kodak NexPress technology. The press uses a dry toner, which is fused to the surface of the paper. Please see NexPress' site for more information:
KODAK NEXPRESS 2500 Digital Production Color Press
I hope you find this information helpful in answering questions on the iPhoto forum."
See Dusky's posts in this thread: http://discussions.apple.com/thread.jspa?messageID=3751865&#3751865.
More printing info here: http://discussions.apple.com/thread.jspa?messageID=1898113#1898113
Another user posted fairly recently some newer info on book quality, etc. but I can';t find my reference to it. You might do a search in the iPhoto 8 forum for book quality or similar to see if you can find it.

Similar Messages

  • Auto import images into aperture...and continue importing...

    i know that there is a script to import images into aperture, but i need to use this with a tethered camera....so i use a canon app to shoot files to a folder and as the files come in, i need them to get imported as they keep coming in....i am only referencing them, so they are actually staying within the folder....i can import the files but i don't know how to/which command "keeps checking the folder for new files that came in" hope this makes sense....
    i know that there is a "hot folder" app available which seems to be a automator app, but it is superslow and only brings in every 4th or 5th image (and sometimes just brings everything to a halt...)

    i know that there is a script to import images into aperture, but i need to use this with a tethered camera....so i use a canon app to shoot files to a folder and as the files come in, i need them to get imported as they keep coming in....i am only referencing them, so they are actually staying within the folder....i can import the files but i don't know how to/which command "keeps checking the folder for new files that came in" hope this makes sense....
    i know that there is a "hot folder" app available which seems to be a automator app, but it is superslow and only brings in every 4th or 5th image (and sometimes just brings everything to a halt...)

  • How use PHP to read image files from a folder and display them in Flex 3 tilelist.

    Hello. I need help on displaying images from a folder dynamically using PHP and display it on FLEX 3 TileList. Im currently able to read the image files from the folder but i don't know how to display them in the TileList. This is my current code
    PHP :
    PHP Code:
    <?php
    //Open images directory
    $imglist = '';
    $dir = dir("C:\Documents and Settings\april09mpsip\My Documents\Flex Builder 3\PHPTEST\src\Assets\images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "filename: " . $file . "\n";
    $dir->close();
    ?>
    FLEX 3 :
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="pic.send();">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.rpc.events.ResultEvent;
    public var image:Object;
    private function resultHandler(event:ResultEvent):void
    image = (event.result);
    ta1.text = String(event.result);
    private function faultHandler(event:FaultEvent):void
    ta1.text = "Fault Response from HTTPService call:\n ";
    ]]>
    </mx:Script>
    <mx:TileList x="31" y="22" initialize="init();" dataProvider = "{image}" width="630" height="149"/>
    <mx:String id="phpPicture">http://localhost/php/Picture.php</mx:String>
    <mx:HTTPService id="pic" url="{phpPicture}" method="POST"
    result="{resultHandler(event)}" fault="{faultHandler(event)}"/>
    <mx:TextArea x="136" y="325" width="182" height="221" id="ta1" editable="false"/>
    <mx:Label x="136" y="297" text="List of files in the folder" width="182" height="20" fontWeight="bold" fontSize="13"/>
    </mx:Application>
    Thanks. Need help as soon as possbile. URGENT.

    i have made some changes, in the php part too, and following is the resulting code( i tried it, and found that it works.):
    PHP Code:
    <?php
    echo '<?xml version="1.0" encoding="utf-8"?>';
    ?>
    <root>
    <images>
    <?php
    //Open images directory
    $dir = dir("images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "<image>" . $file . "</image>"; // i expect you to use the relative path in $dir, not C:\..........
    //$dir->close();
    ?>
    </images>
    </root>
    Flex Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="callPHP();">
    <mx:Script>
    <![CDATA[
    import mx.rpc.http.HTTPService;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var arr:ArrayCollection = new ArrayCollection();
    private function callPHP():void
    var hs:HTTPService = new HTTPService();
    hs.url = 'Picture.php';
    hs.addEventListener( ResultEvent.RESULT, resultHandler );
    hs.addEventListener( FaultEvent.FAULT, faultHandler )
    hs.send();
    private function resultHandler( event:ResultEvent ):void
    arr = event.result.root.images.image as ArrayCollection;
    private function faultHandler( event:FaultEvent ):void
    Alert.show( "Fault Response from HTTPService call:\n " );
    ]]>
    </mx:Script>
    <mx:TileList id="tilelist"
    dataProvider="{arr}">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image source="images/{data}" />
    </mx:Component>
    </mx:itemRenderer>
    </mx:TileList>
    </mx:Application>

  • Help! Read raw Image data from a file and display on the JPanel or JFrame.

    PLEASE HELP, I want to Read Binary(Raw Image)data (16 bit integer) from a file and display on the JPanel or JFrame.

    Hey,
    I need to do the same thing. Did you find a way to do that?
    Could you sent me the code?
    It's urgent, please.
    My e-mail is [email protected]

  • When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?

    When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?
    This is happening even with photos that were taken on another camera, not just mine.  My daughter told me that the laptop recently fell.  The yellow streak is not anywhere else on the laptop, just on the photos in LR.

    I have had this problem on my desktop.  I have been attempting to reproduce it where it can be debugged. Here are some observations/facts in my environment--no conclusions:
    1. I do not import from camera or memory stick directly into LR.  I copy all images (using Explorer) from camera to two different locations (backup location first); and then my working area. In both cases, after files are copied I mark them Read-only.
    2. Poor observation, but in any event: the issue has only occurred when I do a large number of images. Its a poor observation as I have no exact number.  I suspect when I do less than 50 always works well every time.  However, I have also done some very large imports without issue.
    3. Error only occurs with my RAW images--for me that's NEF.  I have multiple cameras--those that only capture jpg images have never had an issue in LR.
    4. Even if the file is marked Read Only issues can still occur.  I then remove the image from the disk using LR -- and then manually (Explorer) copy in my backup image -- re import again and all is well.  I think one time I exited LR and replaced the bad file with a backup and restarted LR and all was well again.
    5. When it occurs I have performed a HASH value on the broken file and on the backed up file to determine if the file contents has changed--and each time the file contents has changed.
    6. I have had this occur immediately after import, but most often it occurs like this... import large number of images; Make changes in Development Module on random image, export jpg of changes--exit LR. Open up LR and file is corrupted.
    7. I have had this issue on multiple USB drives ( okay just 2 different drives have been tested ).
    What next--fire up Process Monitor and monitor the system (specifically LR) to see if it reports any file open for write access when this occurs.  So, far I have not had process monitor actually running when it occurs--one of these days.

  • How to import images into BLOB datatypes

    Dear All,
    I'm trying to import image into BLOB table type.I'm executing this SQL commands but found error.
    ORA-22288
    ORA-06512
    Please help me i'll be thank full.
    Regards
    FAHEEM LATIF
    CREATE OR REPLACE DIRECTORY images AS 'C:\IMAGES';
    CREATE TABLE test007 (column1 BLOB);
    DECLARE
    l_bfile BFILE;
    l_blob BLOB;
    BEGIN
    INSERT INTO test007 (column1)
    VALUES (empty_blob())
    RETURN column1 INTO l_blob;
    l_bfile := BFILENAME('IMAGES', 'MyImage.gif');
    DBMS_LOB.fileopen(l_bfile, Dbms_Lob.File_Readonly);
    DBMS_LOB.loadfromfile(l_blob, l_bfile, DBMS_LOB.getlength(l_bfile));
    DBMS_LOB.fileclose(l_bfile);
    COMMIT;
    END;
    /

    I know your original pl/sql routine contained a COMMIT, but did you use the same code with the COMMIT? If not, are you checking the table from a different session?
    I ran your same code and it worked without issues. Are saying if you do a SELECT COUNT(*) from test007 it returns zero rows?

  • Importing images into Lr

    Hi,
    I imported images into Lightroom from a folder I created on my desktop, I got images from Iphoto, and now Lr tells me images are "offline".  I cannot work on them.  I haven't purchased license yet and am using the 30 trial, though I don't thing that should matter.  Please help.
    Thank you,
    Patricia Micaela

    Hey Patricia, yes you can learn lightroom in many ways. One is by going through the below Lightroom Help files.
    http://helpx.adobe.com/lightroom/help/learn-lightroom.html
    Other is through different LR videos present on various sites including Adobe TV and Lynda.com. I was able to gather few of them for you.
    http://tv.adobe.com/show/learn-lightroom-4/
    http://www.lynda.com/search?q=lightroom+4&x=19&y=7&f=producttypeid%3a2%3bmeta_software_fac et%3aLightroom
    Hope that Helps!
    Happy Learning.

  • Importing images into LR: Better way than checking boxes by hand?

    Hi!
    I find it incredibly tedious having to tick every little box in the upper left corner of each photo to import it from my card into LR. Is there a better option?
    My apologies if this has been asked before - I don't come here often, it's late and I'm running out of steam.
    Thanks for any help.

    I do make use of the "Check all" and "Uncheck all" buttons as best as I can, but the problem is that oftentimes, I have photos from multiple shoots and locations on my camera card (it's a 4GB and usually lasts me a couple or more shoots). Let's say I have 370 images on my card, 180 from the latest shoot and the remaining ones from two previous shoots. In that case, I have to hand-check 180 little boxes, all the while scrolling carefully so as to not overlook any images, and then import them into the respective folder. After that, I will have to repeat this tedium with the remaining two shoots.
    I guess I am hoping there might be a keyboard shortcut or a key/mouse click combination that allows you to select a defined set of photos in the import window.

  • Importing images into projects

    can any1 please tell me how to import images into my netbeans IDE projects?this should be such that the jar file that is created displays them correctly- i am having this said problem with .jar files.
    plz help!!

    i use a function createImageIcon(ImageIcon icon) wfor which i provide a definition.
    the definition is as given in the java tutorial as follows
    protected static ImageIcon createImageIcon(String path)
    java.net.URL imgURL = LabelDemo.class.getResource(path);
    if (imgURL != null) {
    return new ImageIcon(imgURL, description);
    } else {
    System.err.println("Couldn't find file: " + path);
    return null;
    the program executes perfectly from the IDE when i use the run finction of F6 key. I use netbeans IDE. the images are kept in a folder named images in the 'src' folder of the project. this folder is used to store source files by the IDE. The main thing is i put the images in such a place that the program executes perfectly without errors from the IDE. using the IDE which shows the contents of a .jar file, i verified that the images are indeedd present in the JAR file. however i still continue to get the same error. infact after add ing the images folder and running a 'clean and build' operation , the only difference is that the jar file, which still doesnt display images on buttons, labels etc has increased in size confirming tht the images have been added- i also verified this from the command line.
    but the same problem persists.

  • Importing Images into IDVD for Slidshow

    I am at a loss as to what is the best image size, resolution size, etc. when it comes to importing images into IDVD. I usually size my prints
    4 x 6 @ 300 dpi.. This looks fine in the slideshow preview. After I burn the dvd and view it, the images lose quality, etc..
    Any help would be appreciated

    What you're creating in iPhoto is a movie file that will get cut off in iDVD because of the TV over scan issue. Only stills imported and assembled into a slideshow in iDVD can be scaled to avoid the over scan.
    So to get what you want you'll have to import the stills into iDVD from iPhoto and create the slideshow there.
    If you have Quicktime Pro you can mask the QT movie with a black mask and cause the iPhoto QT movie to be scaled to the TV safe area. The steps are below. You'll have to experiment with the final sizes to get it exact:
    Masking Movies to the TV Safe Area for iDVD
    The mask should be 640 x 480 pixels and the movie at approx. 580 x 386 (I arrived at this figure by making a snapshot of the TV save area of an iDVD project with Snapz). You can set this size after you’ve joined it with the mask movie with Quicktime Player Pro.
    Import the black mask jpg file into iMovie and and export it as a .mov file at the same length as your movie (there may be a way to not have to create a specific length mask for each movie but I haven't found it. If the times do not match the movie file will be synced to the length of the mask movie).
    Open the mask movie in QT Player Pro and then open your regular movie and make it the front window of the two. Now you'll need to run a QT Player AppleScript titled "Merge Movie 1 into Movie 2". You can get it from this Apple site: Quicktime Player Scripts.
    Then run the script. You can then run the merged movie to check it out. Your movie will be located in the upper lefthand corner of the window when played.
    When you open the Movie Properties window from the Window menu for the combined file you’ll see the following:
    Video Track 1: the black mask
    Video Track 2 : you movie file
    Tween track: Have no idea what this is.
    Sound track: self explanaotry
    Black mask.
    To set the size of your movie to the correct size select it in the Properties window and click on Visual Settings pane. Then enter 580 in the first field and hit enter. With the Preserve Aspect Ration box checked the other size will automatically be set.
    To center the video track in the center of the mask select the Video Track 2 item and plug in a offset of about: 70 & 45. You'll probably have to play with that to fine tune the centering. Doing the math and subtracting the movie dimensions from the mask dimensions and dividing by two just didn't get it perfectly centered bit with a little eyeballing and trial and error it got there.
    Now save as a new self contained movie after checking the High Quality box at the bottom right.
    You can now import it into iDVD for preview and burning. One drawback is that you can't invoke the TV save area for a movie in iDVD to check it out. But you can mark it on the monitor screen while viewing a menu or slideshow and then play the movie to see how close you came. I found that the size was still a little under the TV safe area when burned and played on my TV. It may be the difference in normal CRT screens and flat screens, etc.

  • What is the best format to import images into iBA? How should I compress my images before importing? What is the best file format? PNG? Jpeg?

    What is the best format to import images into iBA? How should I compress my images before importing? What is the best file format? PNG? Jpeg? I'm trying to figure out the best file format / compression for importing images into iBA. Also, does anyone know how iBA will compress the file? Are the assets attached (like a website) or flattened out? Does anyone know how iBA handles this? Many many thanks to anyone with insight into this.

    This question is largely answered by the following thread...
    https://discussions.apple.com/message/17805700#17805700

  • Problems with importing images into Lightroom cc

    Problems with importing images into Lightroom cc
    I have installed lightroom cc and having trouble imortera images from my Canon 1DX.
    Lightroom starting the capture, but then nothing happens more, if I turn off the camera, I get error message photo 100-200 could not be loaded.
    Now I have left lightroom 5 and where the input port works fine.
    What happened to the upgrade from Lightroom 5 to lightroom cc?
    The camera has the latest software.

    I've now tested in various ways.
    First, I have images on both memory cards in the camera.
    Test1) Selects Not all of the photos in the camera at the input port bearings, it seems to work fine.
    Test 2) selects all cards in the camera and then get the following, Lightroom starts inportera short but stops and nothing happens (Fig.1).
    I turn the camera off after a while and get the next meddelnade (picture 1)
    Which can be translated:
    "The following files were not imported because they could not read (351)
    Property 1-100
    etc. "
    Picture 1.
    Picture 2

  • Problems importing images into Livecycle Designer 8.0

    Hello all,
    Recently, I have been having problems importing images into the livecycle forms. I put in the image field and link the image but it would just show a broken link symbol. i usually edit the image in photoshop and save as a jpeg. I can't figure out why Livecycle takes some images but not others.
    Please help anyone

    Never mind, I figured it out, have to save files in RGB format, not CMYK

  • Importing images into Flash

    I am importing images into Flash only to discover that the images (1280 x 720) are not centered on the stage.  Most of the time the images are off centre by a few pixel widths or in some cases by an inch or more.   I can't get them to centre unless I clear the stage and import a few times.
    Is there a way to import and have the images framed perfectly within the stage.
    I'm currently using Flash CS5.5
    Thank you.

    You can also click the two blue boxes icon under the Timeline and then drag select the whole timeline and that will let you select all your frames at once. then just position them all where you want them at the same time. I attached a screen cap of the area I'm talking about. It's right after the two white boxes.

  • There was an error importing some photos from my iphone, and since then I can not close the program ... it gives the mesage 'please wait until import is conclued'...but nothing is being tranfered. Any help ? Iphoto version 9.5.1

    there was an error importing some photos from my iphone, and since then I can not close the program ... it gives the mesage 'please wait until import is conclued'...but nothing is being tranfered. Any help ? Iphoto version 9.5.1

    Force Quit the application from the Apple menu.

Maybe you are looking for

  • MBP doesn't work properly with Apple LED Display

    I wasn't sure if this should go in this discussion forum or the one created for the cinema display but this makes more sense. Recently I've been using my MBP (silver with black keys) plugged into my LED cinema display docking station and it's really

  • Cannot add playlists to folders in iphone 5 / itunes for mac

    Does anyone know why one cannot add playlists to folders in iphone 5. When I drag a playlist to a folder on my "Devices" on my iMac in itunes 10 it does not show up on my phone after it syncs. I should note that I currently have 3 folders with playli

  • ClickTAG in flash v.8 ?

    Hi, Is it true that ClickTAG is no longer supported since Flash version 8? I created a banner for my client, and used Blur filter (Flash version 8) as an effect. Then, for the button action I used this code: on (release) { getURL(clickTAG, "_blank");

  • Payment arrangement

    I have a payment arrangement made for July 3rd. My bill is 313 dollars and I was able to make a payment of 150 dollars. My parents usually pay half but their payment will not go through and only method of payment they have is check. Is my service goi

  • I have an iPhone 3g  my app store app is missing, how do i retrieve it

    I have an iPhone 3gs  My app store icon is missing.. how do I retrieve it?