Resolution for print

I downloaded some photo's some time ago from my sony digital camera to my mac.  I was recently printing off some photo's taken using the same camera on the same day.
Some photo's printed fine no problem however some photo's looked great on the mac screen in the iphoto library but wont print. When i double clidk the photo i get a black screen with a warning sign.
When i try to email to myself i get nothing even though it says its exporting a jpeg. If I try to print from the library page as opposed to opening the photo i get the black screen and warning sign again.  If I ignore the warning signs and say print i get two dialogue boxes with no wording in them come up and my mac just hangs. I am starting to regret going down the apple route.
Can anyone advise please as to how i can print off my photo's which are saying poor or low resolution?
Also how can i avoid this happening in the future?
Fingers crossed some one out there has this sorted ;o)

I agree.  In fact, make it your workflow when sending this type of file to an online vendor.  The importance of the 350ppi requirement is for any of your transparency or raster effects to match their RIP's output line screen.  It's becoming an industry wide mistake to refer to file resolution in terms of dpi.  Do yourself a favor and get familiarized with the terms dpi and ppi, what they really are and what importance they play in output.  The advantage to PDF is the fact that you can establish the output resolution, color settings, and font embedding that will trim the variables that could go wrong on the vendor's end.  Your job is to make sure you apply the correct resolution, color, and font settings in the original file and again when you generate the final PDF.  If you are unsure, find a local print provider that knows what they are doing and can teach you how to setup a file properly.  You may have to intern somewhere, take a good course somewhere, and/or buy a really good and accurate book on prepress file standards.  Try your local book store or library.  Use better keywords when searching on the web, take a look at some of adobe.com's resources ( i.e., A Designer's Guide to PDF or similar ).  Now, you will need to learn more about Illustrator Color Settings and the Raster Effects Resolution Settings.  These are two areas you should spend a little time getting to know how different settings will affect output. In the case of your business card, set the raster resolution to "High".  That will cover you on their 350ppi requirement.  Do not get discouraged by seeing their proof on screen.  It's just a preview.  Do not get too comfortable with what you see on your screen unless your entire workstation is calibrated and even then you have to be cautious. 

Similar Messages

  • Completely Lost - Resolution for Printing

    I am very amateurish when it comes to computer software, and Illustrator is flying right over my head.
    The problem: I need to print 4 poster boards at 40x30 inches each. I understand that 300 dpi is the recommended quality for printing, but I'm not sure how to set that. How many pixels does this translate to? What do I need to do in order for me to get the best quality printing at 40x30 inches?
    Again, I'm a noob, so I don't really understand this stuff. Can't I just format my files in another program, like Paint.net, safe it as a pdf, and print like that?

    Sounds like you're in large format land.  A 40" x 30" file is a bit too large for sheet fed press.  Although there are presses that can handle that size, I still think you're looking at inkjet printing.  This is where your file prep will become an issue, mainly because inkjet vs. offset are two different worlds.  If you're just starting out and are in a crunch, then perhaps you should use a program you are familiar with and save out as a PDF.  However, 300ppi is typical resolution for offset printing at 100% and 150ppi is typical resolution for inkjet at 100%.  These are not document resolutions ( DPi ), but rather are image resolutions for Photoshop type bitmap files ( PPi ).
    Either way, there's no reason to get bogged down with pixel dimensions.  Technically speaking, Postscript data is set for 72 pixels per inch, so your pixel dimensions would be 2880 x  2160 pixels.  This really does not have anything to do with document resolution and/or image resolution, it is primarily a Preview architecture.  If you plan for inkjet, large format printing, make your document / raster resolution 600 DPi ( you could get away with 300 DPi ).  For offset you can easily double that ( min. 1200 DPi ).  Once you get the Math down, file prep will come easier to you.  I usually assign document resolution first before even naming the file and starting work on it.  Best to talk to your print vendor to see what they recommend.  Perhaps the PDF out of Paint.net will be acceptable.

  • Image Resolution for Printing Photos

    I am not sure if the resolution/files size requirements are the same for both inkjets (e.g. Epson) and taking your camera's SD card to a local self-serve kiosk (e.g. CVS).
    I have been taking photos at the larger file size with my Canon Powershot and importing them into iPhoto. But I just realize that I am going to have a gigantic iPhoto library a lot sooner then expected.
    But let's say I wanted to print theses images to a typical 4" x 6" dimension gloss paper stock. What is the rule of thumb in terms of minimum/ideal resolution and file size of the image(s) that I want to print? What about 8.5" x 11"?
    Below is the available settings for my camera:
    L = 4000 x 3000 = 12MB file
    M1 = 3264 x 2448 = 8MB file
    M2 = 2592 x 1944 = 5 MB file
    M3 = 1600 x 1200 = 2MB file
    S = 640 x 480 = 0.3 MB file
    Sometime when I open the original JPG in Photoshop the resolution is at 72 lpi. Other times it will be 180 lpi. I guess I am trying to get a sense of what resolution I should set my camera at and what adjustments do I need to make (if any) when it is time to print to paper stock.

    The rule of thumb is 300 dpi. But it's  rule of thumb and you can get excellent images from 180 or less with a: a good printer and b: (most importantly) a good shot, well focused and exposed.
    So to find out the maximum you'll get at 300dpi from your list, just divide the numbers by 300: 4000 x 3000 / 300 = 13.3 x 10 print.
    For my money: set your camera to the best quality and size always. It's easy to through throw away bits og a photo, but you can't add in missing bits after the fact. Maximum everything gives you most margin for error.
    If you're worried about space then remember you can run a Library from an external drive:
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • How do I change the rendering resolution for printing?

    Has anyone figured this out yet? I am writting an app the prints out forms and lots of reports and they keep coming out very ugly because it is only printing at 72dpi, I need it to be at 300 or so...
    Thanks,
    Peter

    I figure out how to do this after much searching. Before I was creating a bufferedimage then drawing all my content on that then drawing the bufferedimage on to the graphics that go to the printer.
    Instead I found out the better approach is to do something like this:
    class PrintablePage extends JPanel implements Printable {
      PrintablePage() {
        super(false); //Disable dubble buffering
      public void paintComponent(Graphics g) {
        //Do all the drawing here
      public void print(Graphics g, PageFormat format, int page) {
        Graphics2D g2 = (Graphics2D)g;
        this.paint(g2);
        g2.dispose();
        g2 = null;
    }For some reason this prints out much higher quality than any other way I have found to print things. I don't know the exact dpi, but it is much better than the 72 I had before.

  • DL high resolution SAP-Netweaver-marketing-pictures for printing

    Hi,
    does someone know where I can download some SAP-"marketing"-pictures in high resolution for printing? Maybe they have a download section for press releases. I was looking for such a section but was not able to find one.
    Especially I am looking for this picture:
    http://www.cundus.de/img/seiten/produkte/sap/enterprise_portal_01.gif
    Thanks a lot.
    Regards,
    Thomas

    The company already told me that they will refund my money so that is not the problem.
    The ratio differences is what the person told me initially too, however told me that I could also change the dimensions so that the photos would not be cropped and centered automatically...but that's not what I want to do, as it would leave white space on the sides and top, and I have several that I want to frame.
    So what do I do now? I have 100's of pictures and over 90% of them have this problem. I used your software to enhance the photos, crop the photos, etc... but I don't see an area that explains to me what part of the image will be cropped out once they are sent out to print. Nor to I see an area that gives me a rectangular dimension to work from. If I have to crop these pictures to get them to turn out right, I need to get started on this right away.
    When I print these on my own printer they seem to print just fine. There are too many to print this way, however.

  • Hw can I generate XY graphs directly in a vector data format for printing ie pdf

    A further question re. Printing of Graphs
    There are many similar questions but none where the answers are acceptably adiquite or two or three were the link was broken,
    "Developer exchange forums have been moved" and a pointer to the new
    site, unfort it was hard to find or guess the rest of the link.
    So here is my angle on this problem;
    So far I have tried;
    Using property node: "App.  Printing.Default Printer" to select the printer to use, then
    Using Report Functions to print controls;
    New Report, to generate a new report reference
    Set Report Orientation
    Set Report Margins
    Set Report Font
    Set Report Header Text
    Set Report Font
    Set Report Footer Text
    loop for each page
    Set Report Footer Text,     With page number
    Append Control Image to Report,      several times
    New Report Page
    Until the end of the last page
    Print Report
    Dispose Report
    Initially using existing XY-Graph controls from the front panel.  These
    are on a page of a Tab control to hide these controls while not in use
    and allow them to be hidden while generating the printout. 
    Unfortunately when this page is hidden any graph scales set to
    autoscale don't, (normally don't need to and would otherwise be a waste
    of processor time), resulting in graph plots going off scale or
    becoming a line along the axis.
    An issue is that what is printed appears to be read from the screen, so resolution is much
    lower than required for for printing, resulting in rather pixellated
    printed versions. These prints will usually be emailed, so tried the
    pdf995 "printer driver" but the resulting pdf file size is rather large.
     Currently trying Plot-XY on a much larger picture so as to get
    adequate resolution for printing, however suspect this will result in
    much larger pdf files and probably cause other problems. 
    The preferred solution in this case will probably be to generate print
    output, instead of based on raster images (ie jpg or png), but on a
    vector format, maybe via postscript or directly in pdf format.
    Similar graphs currently printed from Excel via pdf995
    (or OpenOffice) result in files around 20 kb per page. these can be printed at any size
    (at least upto 64 times) without becoming pixellated, so assume these
    are vector based.
    Currently a page with 4 XY Graph controls uses around 40 to 45 kb per
    page but resolution is poor and overcoming that may push file size up
    to 150 to 200 kb per page, and the whole job can be 50 to 100 pages.
    Are there any functions to generate XY graphs directly in a vector data format preferably in pdf or via PostScript format.
    Cheers
    Darryl

    Hi Darryl,
    I was able to reproduce the issue you were seeing, in which a report generation was taking up a large amount of space per page in a PDF utility. I found; however, using my attached VI (notice that it is set to *.png) and the CutePDF utility (free download at http://www.cutepdf.com/) I was able to get a per page size of about 10 KB. Also using the png I found that the image quality seemed to be quite high.
    Please try incorporating this solution into your application and see if it reduces your file sizes.
    Thanks and have a good evening!
    Cheers,
    Jonah
    Applications Engineer
    National Instruments
    Jonah Paul
    Marketing Manager, Embedded Software
    Evaluate the LabVIEW RIO Platform! - ni.com/rioeval
    Attachments:
    print_XY Graph.vi ‏23 KB

  • Saving for Web, Saving for Print

    I have Photoshop Elements 9 & 11.  I realize that for the best resolution for prints, the dpi should be at least 220.  For web, pics can be saved as little as 72 dpi.  Questions:  if I want to have print AND web versions of pics, is it best to save them first for Print version, and then do a "Save For Web."   If I "Save For Web" before I do my "Saving for Print," will this mess up print versions?  I am presently saving my images as tiffs because they are layered.  Also -- I don't want to duplicate files and clutter my computer so I'd appreciate feedback on what the most efficient way of saving is for doing both Web and Print.  One other thing -- should I uncheck "Resample" for print versions?
    Thanks!

    For printing, it is desirable to have the file resolution in the 240-300px/in range. For web work, 72 px/in is ok.
    DPI is a printer setting.
    Suggest that you continue saving in format which supports layers as you have been doing. This will allow you to go back at a future date and make changes.  Go to File>save for web, save as JPEG or PNG-24 to a separate folder. When you are done with these files, delete them. You can always go back and recreate them as needed. And, don't forget to back up the picture files to removable disk or DVD.
    In the File>save for web dialog, I ususally make the longest side 600 +/- pixels, and check "constrain proportions."

  • Iphoto: resolution for 4x6

    I am trying to upload photos to Walmart to make an online calendar.  When I select the photos in Walmart's calendar program, I get the message "not a recommended resolution for printing".  I've never had this issue in the past several years, but new camera, and new mac, so I'm not sure where the problem lies.  Can you tell me what resolution is recommended for 4x6 prints, and what I have to do in iphoto to change to that?

    Pretty much depends on what Walmart consider a good resolution. But a rule of thumb: 300 dpi is often considered good. For that you will need a snap of 1200 x 1800 pixels. (Think: 4*300 x 6*300) What size images do you have?
    Regards
    TD

  • How do you determine resolution for a given print size in LR?

    CS3 displays image resolution for a given size. How do you determine what that resolution is in LR for a given print size, so you know whether you should upsize or downsize for optimum print resolution range?

    The only way I know of is to work it out. LR and PS make assumptions that are often not ideal (although the differences may not be noticable). Different printers like different resolutions per inch. For example, I once had an Olympus Dye Sub printer that produced awful prints unless the file was exactly 314 ppi. Not 300, 314. 300ppi looked awful. 314 looked amazing. Many Canon inkjets prefer 300ppi files and most of the better Epson's prefer 360ppi. Lambda printer like 400ppi files.
    So find out what the printer likes, and in LR enter that number into the printer dialog. I believe the LR engine interpolates the file based on this and the image size on paper you choose to produce a file of the best size.
    Having said all that with most modern domestic and prosumer inkjets the difference is pretty negligable.
    Gordon

  • What Print Resolution for Epson R800?

    I wonder what the value for "Print Resolution" in the Printer module should be to print with an Epson R800 on glossy or luster paper at the highest quality settings (Photo RPM).
    I would rather not have LR do any re-sampling... but given it asks for a resolution, I am unsure what is the best value to provide.

    Antonio,
    LR is limited to 480 dpi, not printer ppi:
    "This number of ink drops a printer can put on paper is called the printer resolution dpi. So if a printer has a resolution of 1200 dpi but requires 16 drops of ink to display a color, the actual resolution is much lower. Since ink drops are used in both directions (length and width: 16 drops made up of 4 rows of 4 drops), you could say that the effective resolution would be 1200 divided by 4 (or 300) dpi. Practically this isn't entirely true since modern inkjet printer can spray tiny ink drops that overlap each other. Roughly you can say that the higher the printer dpi, the higher the print quality, but it also depends on how the printer forms the dots on paper."
    quote from this article:
    http://www.wildpicture.com/pages/photography/dpi.htm

  • Print quality / resolution for iPhoto books

    Hi -
    I am getting ready to upload my first iPhoto book for printing, and a colleague told me to beware of a potential issue. After searching these forums, and searching Google, I found that people in the past (perhaps prior to iPhoto '08?) have had print quality problems when printing 8.5 x 11 books vs. 6x10 books.
    Basically, we are creating an 8.5 x 11 book and will have several books printed by Apple. At some point in the future, we will make similar books at the 6x10 size. Will the photos that are included in the books print at similar quality?
    Thanks -

    I have ordered books in the past that were made up of photos 1600 x 1200 pixels in dimension and they came out fine. HOWEVER, I had no pages with a photo filling the entire page as Larry warned about.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) 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 or later), 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 6 and 7 libraries and Tiger 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.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Camera resolution for NetStream. Please help.

    I'm developing a videochat app that should work on different network speeds. The idea was to switch to lower resolution if by some criteria delay becomes too noticable (say, delay is 2 seconds, or dropped videoMessage packet ratio is more than 20%). Or if on the other hand user has fast network connection then app should increase the resolution and thus providing better video image quality.
    The problem: I can  not find anyone done this before, thus I am comming to the conclusions that I'm doing something wrong here.
    Is it possible that RTMFP is lowering the video image quality automatically when ever it thinks that delay is too huge? If this is the case, than should I set the video resolution for camera to 1600x1200 and feed it to the netstream and allow NetStream to take care of everything else, or there is some other magic numbers for resolution that I should set?
    If this is not the case and RTMFP is not taking care of lowering/increasing video quality automatically then how can I measure the quality. I know there are NetStream.info and NetStream.liveDelay, nether of which for RTMFP connections provides valuable information to detect delay. For me liveDelay is going up to 20 and then fluctuacting there, but for info videoLossRate property is always zero, even if I set everything to max and lag is very noticable.
    So how is RTMFP intended to use?

    I agree.  In fact, make it your workflow when sending this type of file to an online vendor.  The importance of the 350ppi requirement is for any of your transparency or raster effects to match their RIP's output line screen.  It's becoming an industry wide mistake to refer to file resolution in terms of dpi.  Do yourself a favor and get familiarized with the terms dpi and ppi, what they really are and what importance they play in output.  The advantage to PDF is the fact that you can establish the output resolution, color settings, and font embedding that will trim the variables that could go wrong on the vendor's end.  Your job is to make sure you apply the correct resolution, color, and font settings in the original file and again when you generate the final PDF.  If you are unsure, find a local print provider that knows what they are doing and can teach you how to setup a file properly.  You may have to intern somewhere, take a good course somewhere, and/or buy a really good and accurate book on prepress file standards.  Try your local book store or library.  Use better keywords when searching on the web, take a look at some of adobe.com's resources ( i.e., A Designer's Guide to PDF or similar ).  Now, you will need to learn more about Illustrator Color Settings and the Raster Effects Resolution Settings.  These are two areas you should spend a little time getting to know how different settings will affect output. In the case of your business card, set the raster resolution to "High".  That will cover you on their 350ppi requirement.  Do not get discouraged by seeing their proof on screen.  It's just a preview.  Do not get too comfortable with what you see on your screen unless your entire workstation is calibrated and even then you have to be cautious. 

  • Need Help Please - PSD InDesign (for print)?

    Hello Everyone,
    I'm a graphic designer for a company that has decided to run some print ads in a magazine. At the time, I only had Photoshop to create their advertisement with. Now they have purchased CS4, which will make my life easier in the future, however, for now I have the problem of creating my advertisement made with Photoshop and creating a print ready PDF.
    Here is my problem:
    - I created a PSD at 8.5" x 11" at 300ppi
    - I did not take in to account for the 0.125" bleeds and 1/8" trim
    - It needs to be SWOP compliant (I figured out I can export a PDF that adheres to SWOP)
    - Fonts should be Type 1 Postscript, no TTF (I'm using Helvetica and Arial, when I export the PDF, it says the embedded fonts are TTF)
    - I'm totally lost with regards for designing work for print!
    Here the specs they gave me, AFTER I created the design in Photoshop
    ====
    Full page, full bleed 8.0" 10-3/4" (**I created my PSD as a 8.5" x 11" - without regard to bleeds**)
    Include 1/8 bleed over all to ensure full page bleed
    and keep live copy 1/4 from trim and crop marks.
    CMYK, 4-color process printing only.
    Do not add bleed to partial page ads.
    All requirements are based on Specifications for Web Offset
    Publications (SWOP). Any deviation from these specifications may
    result in less-desirable printed results.
    We support PDF files generated by Adobe Acrobat using
    the X-1A Job Option Settings for Distiller. In order for
    prepress to generate printable PDF s, it is important that
    the native file is prepared accordingly.
    Preparing native files for printable PDF s:
    All images/scans must be in CMYK mode,
    300 dpi resolution
    Use Postscript (Type 1) fonts only. No True
    Type, Windows/PC or custom fonts accepted
    Embed all fonts
    Do not nest EPS files in other EPS files
    Four-color solids should not exceed SWOP
    density of 280%
    Provide two digital color proofs at 100% size, created
    from the supplied digital file, on a contract-quality,
    digital halftone proofing system in accordance with
    SWOP web coated standards (AGFAPressmatch,
    Kodak Approval, DuPont Waterproof, etc.). Laser or
    inkjet proofs are not considered accurate in color and
    are supplied for content confirmation only.
    If supplied, the publisher is not responsible for color variances
    between the digital file and final color reproduction.
    NOTE: If proofs are not supplied, make-goods due to
    reproduction quality will not be honored.
    ====
    I've never done print work before, as I'm mainly a graphic designer for the web.
    Any help on this matter would be greatly appreciated! Unfortunately for me, they bought the advertisement space with the magazine for the running of the next issue before speaking with me. So I'm under extreme pressure to get this underway. I'll be most grateful for any help or guidance, Thanks guys!
    - D

    You can Place a PSD in Indesign, but unless the bleed is a single color,
    it's going to be easier to add bleed in Photoshop. Bleed is whatever
    gets cut off when they trim the paper. Trim is close, but not exact, so
    whatever picture or color goes to the edge of the paper must extend
    beyond the edge to avoid trim including some white when the trim is not
    quite perfect. If it's a picture that goes to the edge, you need to
    figure out a way to extend the picture beyond the edge. If it's white
    that goes to the edge, then you don't need bleed. If it's a non-tone
    color field (a single color) then you could Place the PSD in Indesign
    and add bleed color behind it and extending beyond the edge of the page.
    The magazine should not concern themselves with TT or T1 fonts, either
    one should work. That said, Helvetica and Arial are very close. If your
    Helvetica is Type 1, just use Helvetica for the whole thing. If you
    embed it in the PDF, it should show there as a Type 1 subset.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Export in pdf for print inexistant border

    Hello,
    I try to export an Indesign CS5 file in pdf for print.
    If I choose PDF1.4, X-4:2008  I have a dark rectangle like a shadow under several text. I thought it was a transparency problem but I now set up the transparency to High Quality.
    If I choose PDF1.3  I don't have the shadow issue anymore but a white border around the text and images which had been rotated.
    I'm not a specialist in pdf export for print so I don't know what is the best settings and how to fix my issue.
    Can it be only a screen issue and be ok for the print??
    Cheers,
    Elodie

    I apologize for not getting to this sooner.
    How are you viewing the PDF that shows the discoloration? Acrobat or some other application? Is overprint preview turned on in Acrobat?
    This is definitely transparency related. When you choose PDF 1.3 you are flattening the transparency and the white lines you see are called "stitching." Thay ae a dispaly artifact in Acrobat (they'll disappear if you turn off smoothing), and though they may show in a low-resolution digital print, they are usually not apparent in high-resolution output from a press.

  • If you develop an image in lightroom then export to your hard drive after finishing, is it the right resolution to print out?

    Im learning how to use it, and i love using it, but if i develop then export the image which i have imported as a fine jpeg from my camera, will it be the right resolution to print out as a photograph or do i have to do anything else to the image. thanks

    When you are configuring your export options in the export dialogue, you have the option to specify the size in pixels. If you are going to print to a certain dimension, first of all I suggest that you crop the image to that aspect ratio. Then, export an image that will be big enough to support that print size. If the image has enough pixels the PPI setting is meaningless (actually, it's meaningless anyway as far as printing is concerned). For example, assume you want to order or print an image that is 16 and 20 inches at 240 PPI. Here are the steps I would follow.
    1. Crop the image using the 4 x 5 - 8 x 10 aspect ratio setting.
    2. In the export options specify in the image sizing options, choose long edge 4800 pixels (20"x240 PPI).
    3. You can change the PPI setting to 240 if you want, it isn't going to matter.
    4. Set any other printing options as required, then export the image.

Maybe you are looking for