IPhoto Book linescreen, resolution, and color space

to maximize the quality of the iPhoto book I plan to preparemy image files, but I need to know some things about the printing process. Does anybody know the following for the production of the Large iPhoto books:
linescreen
print resolution
colorspace
ANY accepted file types (16 bit layered Tiffs, JPG, or other)
and possibly dot gain (?)
Anybody using Pixel Genius' PhotoKit Sharpener to prepare their files? If so which output sharpeneing settings did you use?
Thanks

Joe:
Welcome to the Apple Discussions. I'll try to answer those that I can.
Linescreen - not familiar with that term but read a while ago that 150 lpi printers were used. Don't know if that's related or not. Also there seems to be a difference (for large book at least) between those printed at the West coast site and those from the East coast site. The west coast books were reported better.
Print resolution - large books are printed at 150 dpi. However, you can change the dpi resolution of the pdf file that gets created for uploading and printing as follows:
Method to increase the print resolution for books:
1 - download and run Pref Setter.
2 - open the iPhoto preference file from within Pref Setter.
3 - locate the Keys titled BookTargetMediumImageDPI, BookTargetSmallImageDPI and BookTargetImageDPI.
4 - change their current values to 300.
5 - save and quit Pref Setter.
Colorspace - I've used sRGB but don't know if that's the optimal one. My results have been OK in my mind.
Files accepted - all those you've listed are acceptable. Tiff file shouldn't have alpha layers as iPhoto doesn't play well with them.
Dot gain - don't know what that is.
For sharpening of those I've sharpened I used Photoshop's Unsharp Mask filter.

Similar Messages

  • Photoshop PDF resolution and color space difference: Acrobat vs. Photoshop?

    I have received several Photoshop PDFs from different sources. In Acrobat, the document properties indicate the PDF producer as Adobe Photoshop for macintosh -- Image Conversion Plug-in. When checking the image either with PitStop or through Photoshop via Acrobat's Touch up object tool, the image shows as a 100 dpi RGB image. If the PDF is opened directly in Photoshop, Photoshop indicates it is 300 dpi and CMYK.
    Does anyone know why there is this difference? Also what is the Image Conversion Plug-in and how does it work?

    Ah, sorry; in that case possibly the Preserve Photoshop Editing Capabilities-button was hit (thus including the original psd-file) but a low-res-pdf-setting selected.
    In which case the original data would appear to be CMYK and of a higher resolution that the pdf-images.

  • Check image resolution and color

    Please let me know whether it is possible to get the image resolution and color used in a eps file.
    regards,
    Sashi

    You can specify the resolution for exporting, for document etc but resolution of the raster objects can not be retrieved.
    Color space of the raster object can be retrieved using the rasterItems : colorants or imageColorSpace properties  

  • IPhoto is changing resolution and image quality

    I am currently and for the first time using iPhoto 6 to produce a book - a feature within the application. I have edited my images in Photoshop, some have not needed to be so they have simply been saved as either high-res JPGS or TIFFS. On importing them into iPhoto selected images are downsizing and stating that they are not big enough to print - this I know is not true as they are adequatley large enough for printing to A0 minimum at 300 dpi. There are also a select few that are changing in image quality - the colours are looking either bleached out or over-exposed and they have lost their original quality. When opening the exact files in Photoshop they are correctly exposed, perfect colours, sizes etc. If I am to try and 'retouch' them within iPhoto I can resume some of their quality but it seems through the transition into importing inot the application they are being corrupted.
    Can anyone assist me as its driving me mad!!!
    Thanks

    What is the color space of the photos in photoshop?
    In iPhoto Preferences, Advanced, do you have it set to add ColorSync Profile?
    BTW, the 72 ppi (pixels per inch) is irrelevant. iPhoto defaults to reporting 72 ppi because that is a typical screen resolution. What's important is the total pixel dimensions of the image, and whether that size gives you an adequate dpi (dots per inch) when printed at the designated print size. So, while the image looks great on-screen in photoshop, that doesn't mean that it will be adequate for printing in a book. But you are right - you shouldn't see a significant shift in color when importing into iPhoto.
    Regards.

  • Losing resolution and color profile if I drag to desktop

    Canon t2i files-jpegs 18 megapixel-- 5184x3456 sRGB
    If I drag the photo from aperture to the desktop, the resolution halves and the color space changes to adobe rgb.
    If I drag from iphoto, nothing changes.
    Why?

    Solved myself.
    Preview size set to half.

  • Original Image Resolution and Color getting Distorted

    Hi All,
    I am using JAI for reading images from a source i have to read the images and than have to split the images
    initially i was using ImageIO.read() method to read images but for some images it was throwing error as
    javax.imageio.IIOException: Unsupported Image Type
         at com.sun.imageio.plugins.jpeg.JPEGImageReader.readInternal(Unknown Source)
         at com.sun.imageio.plugins.jpeg.JPEGImageReader.read(Unknown Source)
         at javax.imageio.ImageIO.read(Unknown Source)
         at javax.imageio.ImageIO.read(Unknown Source)
         at deepzoomconvertor.Main.loadImage(Main.java:370)
         at deepzoomconvertor.Main.processImageFile(Main.java:238)
         at deepzoomconvertor.Main.reteriveAllImages(Main.java:221)
         at deepzoomconvertor.Main.main(Main.java:86)so in such exception cases i am trying to read the images using JAI and i am successful in reading images
    here is the piece of code i am using for this
      BufferedImage result = null;
       SeekableStream ss=SeekableStream.wrapInputStream(new FileInputStream(file), false);
               ParameterBlock pb = new ParameterBlock();
               pb.add(ss);
               RenderedOp rm=JAI.create("JPEG", pb);
               result=rm.getAsBufferedImage();
                 return result;it able to split images but the quality of images are poor it losts its original color format.
    can any one have any idea how to do it while retaining the quality of image color and resolution
    Thanks in advance
    Umesh

    The JPEG you are reading is a cmyk color space one. They're not common, but they do occasionally pop up in a collection of random jpeg images.
    The default JPEGImageReader that comes with the jdk cannot read them. And it will throw an exception - the exact same one you got - stating it can't. JAI's behavior is a little worse. It will read the image without exception, when in fact it to can't read it. It doesn't handle the cmyk aspect right, so you get a messed up image.
    The native JPEGImageReader that comes with installing [JAI-ImageIO|https://jai-imageio.dev.java.net/binary-builds.html] can read them. It appropriately decodes the ICC_Profile embedded within the JPEG and you get a cmyk BufferedImage. But if you wish to render this TYPE_CUSTOM BufferedImage, go grab a coffee while you wait for it to slooooowwwllly paint. You'll have to do a ColorConverOp to turn the cmyk BufferedImage into an rgb one (so Java2D can render it fast).
    Having done all this you'll find that 1) ColorConvertOp makes the image too bright and 2) The native PNGImageReader that comes with installing JAI-ImageIO has an affinity for returning TYPE_CUSTOM BufferedImages (arggg!!!).
    I'll help you fix points (1) and (2) if you get that far. Maybe the best choice is to simply give up on cmyk jpegs. They're only used in printing press environments, and people only use color space aware applications (like Photoshop) to manipulate them in any meaningful way.

  • IPhoto Book Page Resolution?

    When making 13 x 10 photo book in iPhoto, what does the page size equate to in resolution?  In other words, if I wanted to add a photo I created in Photoshop to my iPhoto book, how large should I make it?

    If the photos is less than 180 DPI you will get a warning message - you can choose to continue or abort and use a different photo or place in a smaller frame
    Since 13 * 180 = 2340 and 10 * 180 = 1800 your image must be a minimum of 1800 x 2340 pixels to avoid a warning message (and for good quality printing)
    However why not use the full resolution that you have - reducing it guys you nothing and may reduce final quality
    LN

  • Iphoto book picture resolution

    I am making an Iphoto book and am importing pictures from old libraries. The resolution on the pictures go as low as 500 kb. I am putting 4 pictures to a page, so the pictures are not large. Will that resolution be okay? The pictures appear to be fine and there is no indication that they will show as being of poor quality. I was wondering how low you can go with the resolution. Thank you.

    your will see a yellow triangle with an ! in it if the resolutions is too low for the size you have chosen to use.

  • Image Format and Color Space

    When I import photo stills into imovie to make a slideshow, does it benefit me if I export the raw photos from Lightroom as 16 bit Pro Photo RGB tiffs and then import those into iPhoto? If I plan to show these on a television, what would be the best color space and format for my images?
    Thanks for the help.

    Java can read JPEG and GIF images. Startig with JDK 1.3, it can also read PNG images. Java 2D (available in JDK 1.2 or later versions) has the capability to write JPEG images. The JPEG codec is in the com.sun.image.codec.jpeg package.
    The Image IO API is available only in JDK 1.4 (currently in beta).
    The Image IO framework allows third party vendors to write coder/decoders for any image format. For this purpose, the Image IO API provides the SPI (Service Provider Interface). This framwork allows you to use codecs of your choice. I think JDK 1.4 comes with the JPEG codec, but not GIF.
    Java Advanced Imaging (JAI), which is an extension to Java, has coder/decoders for several image formats, including JPEG, GIF, BMP, and TIFF. To use JAI, you need to download it from the Sun's Java site.
    According to Sun, because the Image IO API has been developed to replace Java 2D and JAI codecs,they won't be supported in future releases.

  • Lightroom,Nik plugins and color spaces

    I'm having an issue and not sure who is holding the smoking gun.  I have the Nik ultimate collection installed which covers Lightroom and Photoshop CS5 extended. I work primarily in Lightroom and apply most corrections globally but occasionally i need to do localized adjustments so the photo gets shipped off to Photoshop.  Here's a typical scenario:
    1) From Lightroom edit in Dfine 2.0 for noise - as copy with Lightroom adjustments which gets copied as a tiff.
    2) From Lightroom edit in Viveza 2 - as original since we're now working with a tiff and I don't want a copy for every single thing I'm doing.
    3) Edit in Photoshop
    Now there's two issues at this point:
    1) The edits do not show up in the Lightroom history - it's like nothing happened.
    2) Photoshop will complain that the assigned profile is sRGB.  Really?
    #1 is a PITA because if I want to rewind I have to start all over since there's no history - what exactly is responbsible to set an edit as history?  Lightroom or the plugin?
    #2 is by far the most serious as it degrades the work in a seriously bad manner.  I mean, WTH - I'm moving along in ProPhoto Ferrarri space and all of a sudden - *boom* - I'm running in sRGB moped mode.
    I looked at edit->Preferences->External Editing -> Additional External Editor and indeed when I select the Nik plugins from the combo box  preferences the default for the plugins is sRGB.  I can change to ProPhoto and quit.  I repeated this for each plugin assuming that somewhere the setting was remembered.  Nope  LR acts dumb as a rock and shows sRGB as the defaults for all except the currently selected plugin.
    So my questions are:
    - who's gonna own up to the problem - LR or Nik?
    - how can I work around it?
    - how can I make LR remember the settings?  Not a registry key nor INI file in sight to set them - so where/how are the plugins tracked?
    Thanks for any help!
    Jon

    Jon,
    The User Interface for changing how external editors are invoked is about as smart as your average chunk of granite.
    After you change the Color Space to the one you want, you have to click on the Preset box and choose "Save current settings as new preset...". Not exactly intuitive, but there you are.
    Hal

  • IPhoto books too light and/or inconsistent???

    Hello, Has anyone figured out if the general consensus is that the iphoto books are printing light? An order of 30 medium softcover came out light and also inconsistent from book to book. The hardcover seemed not too light and looked better.
    What are others experience, as I would like to try a fix and make all the photos slightly darker and perhaps a bit more saturated....
    Any thoughts??
    THANKS!

    I too have had this problem. I have ordered about 10 large books in the past and the photos were vivid and really looked pretty good. But the ones I received about 2 weeks ago were grainy and the images were really washed out. Funny thing is that I also ordered some single prints of the same pics used in the album and they are gorgeous and clear (very saturated!!). I realize the printing process is different with the books vs. the prints, but this was a tremendous difference. I did email support and they refunded me my $90.00 within 3 days of my email with no questions asked.
    I have been reading a lot of these posts with a lot of suggestions for "tweaking" preferences, etc., but I'm convinced that there is a problem with the Apple printing or the software upgrades because I have not changed my equipment - the only thing that has changed is the version of iphoto I'm using. There is no other explanation for having 10 books look great and the newest ones looking so bad! I really like having the books and I hope Apple will resolve this soon.
    So as to your question about making the photos slightly darker.........well, you still run the risk of receiving another bad book.
    Powerbook   Mac OS X (10.3.9)  

  • DVI-HDMI-SDI Conversions and Color Space-what is happening?

    Can someone explain signal processing when connecting computer monitors and LCD TVs via different connections and conversions?
    - DVI to HDMI
    - SDI (BM) to DVI
    - SDI (BM) to DVI to HDMI
    - SDI to DVI to HDMI
    Are there differences in how each conversion processes color space? I am looking to keep it consistent when monitoring out of PPro and AE...latest CC versions...both PC and Mac workstations.
    We never create media for typical broadcast or other conventional distribution. All media is custom animation for Special Events...large venue projection. But we do run multiple monitors and LCD for content creation and programming...many times running video thru a DVI Matrix or SDI Matrix for signal distribution. So I want to understand how each configuration effects video.
    Does PPro always work in RGB? 0-255...AE as well? Or are there settings that must be set for this?
    Thanks if anyone can help educate me!
    _phil

    That is allot of info there and I will list some to get you started
    DVI - RGB
    HDMI - RGB, YCBCR, or YUV
    SDI - YCBCR
    Premiere - No color management ie colorspace control. I believe it just uses the media and current display output color space. You would have to ask someone at Adobe there.
    AE - Color management ie colorspace control. You can set what space your coming from and going to.
    Do you have any colorimeters to calibrate your display devices? If not I suggest you look at X-Rite since it is cross platform OSX and Windows.
    Eric
    ADK

  • Web Gallery and Color Space

    Hi,
    Is there any way to change the color space of the Web Galleries made by Aperture from Adobe-RGB to sRGB without exporting the photos separate first.
    I'm also missing an adjustment option to set the image quality in the Web Gallery.
    Regards,
    JO
    http://www.motivio.de

    I am slightly confused by what you said...
    without exporting the photos separate first.
    Do you mean change to sRGB while still in Aperture? The answer would be no. The images get changed to sRGB on export. However, you do not have to export the images separately from the gallery. When you create the gallery, the images and html get created all together. So, what you do is change the export presets you are using for the web to have sRGB in the color space profile.

  • Older iPhoto books get 'updated' and lose all formatting?

    OK, I need help to do a little test please: if you created an iPhoto book a while back (say a year ago), and then updated iPhoto to the latest version 9.4.3: open that old book (no other change, just click to open it) : do you see it normally... or are all the pictures messed up?? I am being told that it is NORMAL to lose the formatting (since the software was updated)... and all that labour of love! Really?? (Warning: please don't open a big project that took hours to do: it's really NO FUN to lose it all x100 pages per book, x20+ books!!)

    I haven't experienced that.  Is the theme used for the book in the original library still available in the new version of iPhoto?  If not then there could be problems.  As long as you keep a backup copy of the library there's no risk in trying to update the library to the new version of iPhoto.
    Make a copy of your current iPhoto application, put it in a folder and name it iPhoto 8.1.2 or whatever version it is. When you update to the new iPhoto version it will be left alone.
    If you have problems then you can always open the old iPhoto version with the Option key held down and select your backup copy of the original library to  finish your book.
    OT

  • Export failed to meet required bit rate and color space specs - ProRes 422 to MPEG2

    Using Premiere Pro CC v7 I exported a ProRes 422(HQ) file to MPEG2 and selected the HD 1080p 23.976 preset.  I needed the finished file to have a minimum bit rate of 50Mbps and the color space to be YUV422.  I was way under the minimum bit rate and the color space was incorrect. Can someone please instruct me on how to achieve my desired results. Thanks!

    The source frame rate is 23.976, so I guess I would go with 24p. My intention is to upload the file to a streaming video website. They have their specs laid out for me, I just happen to be new to all of this so I am having a tough time meeting them.
    My question right now is, if i have selected the MXF OP1a XDCAM option with XDCAM 50 NTSC (4:2:2) video codec, will the export be in mpeg2 and what will my bit rate be? I have no way of viewing the bit rate with this configuration.
    Here is a screen grab of their required specs:

Maybe you are looking for

  • Installing from DVD to New Hard Drive

    I have recently purchased a MacBook Pro, and a new 500 gig hard drive to use in it. The new hard drive is mounted using a hard drive dock. While attempting to install Snow Leopard on the new hard drive from the MacBook Pro's DVDs, I get the following

  • About the use of transaction

    Hi expert I use Berkeley DB with lots of short transactions. It seems the performance is limited because commit will cause disk flush/sync. To improve performance I commit several sequential transactions with NOSYNC flag, then commit last transaction

  • VANISHING POINT HELP - PHOTOSHOP / AFTER-EFFECTS

    I've followed along with the Vanishing Point tutorials and can't get them to work, Ill create my image in Photoshop and apply the Vanishing Point filter, create 4 walls and a background, all blue grids, export the .vpe and load into AFX and I get dis

  • Auto fill for user names and pass words.

    Since uploading iOS 7, iPad Safari does not auto fill username and passwords. iPhone 5 with iOS7 does. Settings appear the same but phone does and iPad doesn't.

  • F8 and f9

    Hi, not sure if when using f8 and f9 is called tab browsing or not.... anyway before when pressed f8 it would split the screen into 4 windows and then by pressing f9, it would split the individual windows furher so u can see what windows are open. No