Urgent Print Question

Hello Everyone,
I need help, fast.
I am begining work on a file that is supose to be W-600cm x H-150cm.
My question is what DPI per cm must I choose ?
I have been working with business cards and other small designs on 250 DPI, but never on such a large file.
I want the quality of the design to be great, what is the best DPI for such a large size ?
Regards,
Ezio

Depends mostly on 2 factors
the print process used
How far away is the viewing distance
Best to ask that question of your printer, they will glady give you an answer. Vinyl banners are about that size we have done at 100 dpi, but they hang high on a building.

Similar Messages

  • Image Printing Question

    Hello,
    Bottom line summary: How do I use the Media and Quality setting to get a good image?
    I have an image printing question for an HP 8600 Office. I am trying to get a decent quality image to print
    on regular paper. I gather that I will not get the quality of a photo printer. I gather I'm supposed to use
    HP glossy paper. Please read on ...
    Images come out grainy (rastery) when embedded from an MSPaint project, and if I use Word. However when I printed just an image from image viewer it came like a photo ... but I can't remember what I did. It definitely is capable of printing better. My cartridges all check out, etc. I did the Print Quality Report ... I sure wish I could get that quality when I print other things.
    I tried messing with different settings from the Print - Preference. The Quality (Best, Normal, Draft) doesn't effect the outcome. I tried going into Print - Preference - Media and it makes a difference. I can't figure out which is the best setting for plain paper ... but it's not plain paper. The image rendering algorithm appears to be different for different Media settings. I also tried setting the Advanced Resolution to Maximum DPI. I haven't been totally methodical about this as I was in a rush.
    I see that the printer is being "smart", perhaps a little too smart. 
    So my question is multipart:
    - Is there documenation on the what the Print - Preference - Media settings do?
    - How do I get it to not use grainy/rastery image method, but use the nicer photo method?
    - Should I print Maximum DPI?
    Thanks,
    - Dave -

    Hi @DaveGold , and welcome to the HP Forums!
    I hope you had a great holiday!
    I see you're looking into photo setup options. I'd like to help!
    First I'd recommend this document on Changing Print Settings in Windows 7.  This document should show all the settings you're looking into.
    Also, another thing to keep in mind, when you select 'best print quality' and 'photo paper'. It will only be as good as the source image.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Urgent SQL question : how to flip vertical row values to horizontal ?

    Hello, Oracle people !
    I have an urgent SQL question : (simple for you)
    using SELECT statement, how to convert vertical row values to horizontal ?
    For example :
    (Given result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1
    K. Smith ...............1
    K. Smith ........................1
    (Needed result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1 .......1 .......1
    I know you can, just don't remeber how and can't find exactly answer I'm looking for. Probably using some analytic SQL function (CAST OVER, PARTITION BY, etc.)
    Please Help !!!
    Thanx !
    Steve.

    scott@ORA92> column vice_president format a30
    scott@ORA92> SELECT f.VICE_PRESIDENT, A.DAYS_5, B.DAYS_10, C.DAYS_20, D.DAYS_30, E.DAYS_40
      2  FROM   (select t2.*,
      3                row_number () over
      4                  (partition by vice_president
      5                   order by days_5, days_10, days_20, days_30, days_40) rn
      6            from   t2) f,
      7           (SELECT T2.*,
      8                row_number () over (partition by vice_president order by days_5) RN
      9            FROM   T2 WHERE DAYS_5 IS NOT NULL) A,
    10           (SELECT T2.*,
    11                row_number () over (partition by vice_president order by days_10) RN
    12            FROM   T2 WHERE DAYS_10 IS NOT NULL) B,
    13           (SELECT T2.*,
    14                row_number () over (partition by vice_president order by days_20) RN
    15            FROM   T2 WHERE DAYS_20 IS NOT NULL) C,
    16           (SELECT T2.*,
    17                row_number () over (partition by vice_president order by days_30) RN
    18            FROM   T2 WHERE DAYS_30 IS NOT NULL) D,
    19           (SELECT T2.*,
    20                row_number () over (partition by vice_president order by days_40) RN
    21            FROM   T2 WHERE DAYS_40 IS NOT NULL) E
    22  WHERE  f.VICE_PRESIDENT = A.VICE_PRESIDENT (+)
    23  AND    f.VICE_PRESIDENT = B.VICE_PRESIDENT (+)
    24  AND    f.VICE_PRESIDENT = C.VICE_PRESIDENT (+)
    25  AND    f.VICE_PRESIDENT = D.VICE_PRESIDENT (+)
    26  AND    f.VICE_PRESIDENT = E.VICE_PRESIDENT (+)
    27  AND    f.RN = A.RN (+)
    28  AND    f.RN = B.RN (+)
    29  AND    f.RN = C.RN (+)
    30  AND    f.RN = D.RN (+)
    31  AND    f.RN = E.RN (+)
    32  and    (a.days_5 is not null
    33            or b.days_10 is not null
    34            or c.days_20 is not null
    35            or d.days_30 is not null
    36            or e.days_40 is not null)
    37  /
    VICE_PRESIDENT                     DAYS_5    DAYS_10    DAYS_20    DAYS_30    DAYS_40
    Fedele Mark                                                          35473      35209
    Fedele Mark                                                          35479      35258
    Schultz Christine                              35700
    South John                                                                      35253
    Stack Kevin                                    35701      35604      35402      35115
    Stack Kevin                                    35705      35635      35415      35156
    Stack Kevin                                    35706      35642      35472      35295
    Stack Kevin                                    35707      35666      35477
    Stack Kevin                                               35667      35480
    Stack Kevin                                               35686
    Unknown                             35817      35698      35596      35363      35006
    Unknown                                        35702      35597      35365      35149
    Unknown                                        35724      35599      35370      35155
    Unknown                                                   35600      35413      35344
    Unknown                                                   35601      35451      35345
    Unknown                                                   35602      35467
    Unknown                                                   35603      35468
    Unknown                                                   35607      35475
    Unknown                                                   35643      35508
    Unknown                                                   35644
    Unknown                                                   35669
    Unknown                                                   35684
    Walmsley Brian                                 35725      35598
    23 rows selected.

  • Printer question: Is it possible to print 2 pages in 1 side paper?

    Printer question: Is it possible to print 2 pages in 1 side paper? If so how ?

    Duplicate post.
    Printer question: Is it possible to print 2 pages in 1 side paper?
    Re: Printer question: Is it possible to print 2 pages in 1 side paper?

  • Before I buy: speed and printer questions

    I am looking to buy a new TC 500gb version to replace my linksys WRT54G. To upgrade the wireless router as well as start a backup system I have yet to ever initiate.
    Two questions/concerns come up:
    #1) After the initial back up to TC I understand there are hourly incremental back ups - Can that time interval be adjusted, and how long does that back up take (I do now add much data/ files to my main Comp usually) also during those incremental back ups does that affect the computer much, such as if I am playing an internet game, will I lag out while it is backing up every hour?
    #2) Setting up a printer through usb port to be accessed by my home network. My HP C6180 all in one works fine being seen through the aged, but battle tested linksys, any reason it shouldn't work with the TC?
    Thanks for any insights you might have in this regard.
    I have cable isp access, My Main Comp is where the cable modem and TC would be, I have a G4, a G5 and a MBP scattered around the house accessing via wireless.
    Message was edited by: Steven Swift

    Hi Steven, welcome to the discussions.
    After the initial backup (recommend that you use ethernet for this), TC will backup incrementally every hour assuming you will be using Time Machine. There is no way to alter this with Apple software, but a number of users have reported satisfaction with Time Machine Editor, http://timesoftware.free.fr/timemachineeditor/, which will allow you to schedule backups whenever you would like. This might be a good solution if you notice slow downs with other devices during a backup session.
    Backups should be relatively quick, but be aware that very small changes in some programs (like Entourage, vmFusion, Parallels) require the entire database to be backed up, not just the small change that might have been made.
    The printing question is the most difficult as the boards are busy with users who are having troubles in this regard. Perhaps some other users have used the same HP and can comment. Bear in mind that if your HP is compatible, only the printing function will work through the network. Scanning and other advanced functions are not supported.

  • SmartForm Doublesided printing question  -It's Urgent

    Your customer wants your PO SmartForm to be able to print "Terms and Conditinos" on the back side of each page. They don't want to purchase pre-printed forms with the company's logo on the front and terms & conditions on the back. Now this presents an interesting problem. 
    Has anyone else ever had a request like this? If for example there was a 3 page PO to be printed,  they want 3 pieces of paper, the front side of each to containe the PO information (page 1, 2, and 3) and the back side of each piece of paper to containg the static "Terms & Conditions" information. 
    Anyone have a clue how to force this out?

    See a very similar query here.
    Re: Regarding back to back printing in a page
    Regards,
    Ravi

  • HP C6180 AIO Printer question

    I've gotten one of the above and love it's being aboe the print wirelessly. My issue is with the drivers. It seems that I can get but one brint quality and don't have the ability to opt for b&W or Color.
    Am I missing something in the settings and the software? I've checked HP's site and they are no help.
    Any Help will be appreciated.
    LarryJay

    Hello John,
    I finally got the 6180, an upgrade from a 2210 model. It still worked wonderfully, but the times just caught up with it.
    About the 6180: compaired to the previous one it is absolutely wonderful. I've had no real problems. It fit into the network like a champ. The Linksys Router went south and there was no problem setting it up on usb. I could have set it up with the eithernet, but the usb was more handy. As for the speed. I've never had to do 32 pages, so not sure if it would do it in 60 seconds. It is very fast one the economy modes. Fax to email fine, though I have question on how to get it to send a document as an attachment in .mail/apple mail. It sends as an attachement in Entourage. Couldn't find anything about it in .mail preferences. If anyone can help with that, please do.
    In short, John, I love it.
    Larry Jay
    Does the 6180 perform as advertised? 32PPM? Scan to
    Mac? Print docs from the Web & Preview without issue?
    All via the Airport as a wireless server? How's the
    print quality now?
    Leaving an HP 6110 that has all of these issues that
    were HP driver/software problems. I wasn't happy with
    HP ignoring the issues and vowed I wouldn't buy
    another, but if this is all correct, I'll probably
    reconsider.
    John
    iMac   Mac OS X (10.4.7)  

  • Printing questions on AIO 8500, choice of paper and settings..

    hi,
    so i recently purchased  the officeje all-in-one 8500.  i installed the printer and was going to use hp primium photo paper to test out some picture printing.  but when it came time to choose what paper type it was, i couldn't find one that match perfectly..  there was 'Advance Photo Paper' that was not it, 'HP Photo Paper Matte'..  that was not it.  'HP Primium Inject Paper', that doesn't seem it.  what do i choose?
    my 2nd question is  what is the best setting to use for best printing?  i only try a couple sheets.  i didn't want to waste ink trying every possible combination.  but using 'Advance Photo Paper' and best setting, the picture turned out SUPER dark.  print quality was great but everything, especially the dark colors, turned out super dark.  using same paper, and 'normal' quality setting, the print quality was crap, but the color was more true to the actual picture color.
    any help, suggestion would be greatly appreciated.
    thanks,
    k

    No web video will start streaming immediately so keep your expectations realistic.
    1. Flash
    2. Flash
    3. Flash or QuickTime h.264 (but don't expect h.264 or any other large files to be anywhere near immediate)
    -DH

  • IPAD and UPdate to Airprint Printer question Help Please?

    I have an HP 6500 printer that I utilize with my MacbookPro (from 2007) and it operates just fine wirelessly using WiFi at home. I did note  though that my iPod cannot print to the printer as the printer IS NOT AIRPRINT equipped.
    MY QUESTION?
    I am considering purchasing an IPAD MINI (RETINA)equipped with KeyNote, Pages, etc., and am wondering If I invest in an AIRPRINT equipped printer in order to enable printing from the IPAD MINI, will I also still be able to print from my Macbook Pro (2007) which is not equipped with anything that interfaces with AIRPRINT to my new AIRPRINT printer? In other words, is this reversed engineered to allow printing from an older laptop to a brand new AIRPRINT printer?
    Hope you can help, so I don't waste money on a new printer and an IPAD only to find out I can no longer use my LapTop (MacbookPro) to print.
    Thanks you for any help.
    Charles

    Thanks, Jim.
    Going to give it a try, Now, after reading all the reviews on the various HP and Epson model all-in-one printers, my next chore will be to make the actual selection. It seems that there as many people who love each unit as there are who hate each unit. Confusing, but I will digest it over the next several days and make a choice.
    Thanks again,
    Charles

  • URGENT Printing a BI publisher report from a column link in APEX

    I am developing an APEX report with a column link that will call a BI publisher report, the case is the link column in the APEX report will pass the item number to the BI publisher query.
    At the moment this is what I am doing:
    1- Create a hidden item on top of page zero. (e.g. PARAM1_VALUE)
    2- Create a report query and a report layout (For BI Publisher) in the Shared Components. (e.g ITEM_REPORT)
    3- Include the state session in the report query and reference that item in the query. (e.g. SELECT * FROM items where item_number = :PARAM1_VALUE)
    4- Create an APEX report displaying orders with the item number as a link column.
    5- In the Link column I set the report URL request to be "PRINT_SERVER=ITEM_REPORT".
    6- In addition I set the PARAM1_VALUE to be #ITEM_NUMBER# on the link.
    When I press on the link the BI publisher report prints but it doesn't display anything except the Headers, my understanding is that PARAM1_VALUE is not set with the item_number value when I press on the link and thus the query returns no results as when I remove the condition from the query i can see the report printing.
    Please help as this is urgent

    I opened the session and it is there with a proper value, it appears that whenever I enable the inclusion of session state in my shared components query the query returns no rows even if I am not using the item in the query.
    So if my query is "SELECT * FROM items" it will display nothing, the only way to get the report data back is to untick the inclusion of the session state and remove any reference to the item from my query, then I will get the report with all my data (which is NOT what I am trying to do).
    Thanks alot
    Khaled Jamoos

  • Urgent 508 Question!

    The only thing i need to do is add a title or label attribute to some of the controls.
    One of the ones to begin with that i am fixing is the ADF tag af:selectBooleanRadio. When i add some text to the shortDesc field of the control, the html is produces doesn't have the title attribute.
    So i tried to use the corresponding trinidad control tr:selectBooleanRadio, and add some text to the same shortDesc field for the control, and in this case it does add a title attribute in the html that it produces.
    Everything else in the code works fine as well when i add the trinidad control, except for one thing. I have a ValueChangeListener that gets called when you click on another tr:selectBooleanRadio. Within that valueChangeListener event handler function, i have a bunch of code which in the end displays a af:popup. The problem i am having when using the trinidad control is that it somehow is not allowing the display of the popup even though it is going through the code that executes display of the popup. When i click on another link or button that is supposed to display a different popup as well, then the popup associated with the tr:selectBooleanRadio also displays at that time, but not originally when the value changed by selecting a different tr:selectBooleanRadio.
    So, my question is, are there any other successful ways of adding a title attribute to the these controls. If its the af:selectBooleanRadio how do we make it so that the html it generates has the title attribute, or if its the tr:selectBooleanRadio, what might be happening during the event handling that it is not allowing the af:popup to display?
    A quick response to this appreciated since this is very urgent! Thanks very much for your help!

    JDev version is 11.1.1.5
    ok, i will go one step at a time so that it is easy to understand. So i will only mention the first thing right now and then we can try other things later.
    i have a af:selectBooleanRadio. After running the page/application, when the user does View Source in the browser for the page that has the radio button, it is in the form of an HTML tag <input> of type for radio button. What i want to do is to have a "title" attribute for the <input> tag for this radio button. I can use the tr:selectRadioButton trinidad control to do that, but then i have other issues with that, and we can talk about those later.
    Let me know if it is still not clear.
    Thanks very much for your help!

  • URGENT - Printing invoice in order history doesn't work how do I get invoice via email?

    Hi,
    I cannot print/download my invoices. I need invoice for October urgently - I always get this error: errorCode=0001
    What is alternative way to get invoice - I have plan CC for individuals...
    Regards,
    Grzesiek

    Please try different browsers. Sometimes the pop up blocker is turned on which does not allow you to view the invoices.
    Like you can use this link for chrome : Manage pop-ups - Chrome Help,
    The reason I am mentioning it because the invoices are visible in your account from Adobe. I have viewed them. You can try changing the region & check. It should work.
    In case you are still unable to view, please contact Adobe Support at http://adobe.ly/yxj0t6  to assist you.
    Regards
    Rajshree

  • A Few LR4 Printing Questions

    Have a few questions pertaining to the new features in v4:
    1. In the past we created layouts with all the page and print settings embedded. Is the recommended workflow now to just create the layout with the page settings and then create a saved print collection with the print settings?
    2. If you create a virtual copy and put that through soft proofing and make settings, is the paper profile you used for those settings embedded in the virtual copy?
    3. If the paper profile is embedded in your proof copy and you accidently add it to a print collection which has a different profile specified, which profile setting takes precedence (or do you get an error alert)?
    Thanks!
    Jim

    Hi Jim,
    1. The collection resulting from saved print helps you with custom package: because it saves the images to go in your custom pages as well. Like a snapshot. Before you had the layout/template and the images still separate to drag them again in ... at least that was all I had achieved previously.
    2. If you make a "proof copy" (not just any virtual copy), yes.
    3. I remember from another post in beta-forum, no own hands-on experience: You can easily create hurtful contradictions by that. Print collection profile takes precedence, and there is no warning.
    Cornelia

  • Photo/print question

    Another likely "dumb question" from a rookie ID user:
    I've imported a photo and the color looks off (on my screen) -- should I be concerned about photo print quality?
    The photo seems to look OK when printed off my printer, but it will eventually be printed via some type of offset printing (as I understand it)
    P.S. I haven’t researched this much, so if there are answers out there and you can point me in the right direction, I’d appreciate it.
    ID-CS4 6.0.3
    Mac OS X 10.5.7

    The only way you can come close to knowing what the color will look like is to calibrate and profile the monitor (use a colorimeter), and preview using the appropriate output space as the proof setup.
    You absolutely should ask to see a printed contract proof of the job from the printer -- not a PDF or JPEG proof, because they will look different on your monitor unless the calibration is done -- that they guarantee to match in the actual print run.
    Peter

  • URGENT -- Printing reports adds extra spaces in between pages

    Hello Experts,
    I would like to ask for your help regarding printing from concurrent requests.
    I am currently having an issue with printing multiple pages from Oracle reports, both in text format and RTF/PDF formats.
    When I generate a multiple page report and print it directly from a concurrent request, print outs generate extra space after each page even though page size is indicated in the reports (all of them are in letter size).
    I have already tried editing the printer drivers both the actual driver config file and through the application but the results are still the same.
    This is very important since printing is done on continuous paper and continuous pre-printed forms
    Any ideas would be greatly appreciated.
    Regards,
    Jovelyn

    Please post the details of the application release, database version and OS.
    I would like to ask for your help regarding printing from concurrent requests.
    I am currently having an issue with printing multiple pages from Oracle reports, both in text format and RTF/PDF formats.
    When I generate a multiple page report and print it directly from a concurrent request, print outs generate extra space after each page even though page size is indicated in the reports (all of them are in letter size).What if you print the output file from the OS, can you reproduce the issue then?
    Troubleshooting (Printing) [ID 104528.1]
    An Extra Empty Page Is Printed at the End of Requests Output [ID 1011499.7]
    I have already tried editing the printer drivers both the actual driver config file and through the application but the results are still the same.Can you reproduce the issue with other printers?
    This is very important since printing is done on continuous paper and continuous pre-printed forms
    Any ideas would be greatly appreciated.If the issue is urgent, please log a SR.
    Thanks,
    Hussein

Maybe you are looking for

  • Reports problem

    Hi, My client require reports as below: 1. DocNo - Cust No. - Cust Name - Pstng Date - Net due dt - Amt in loc.cur. I prepared above report in FBL5N, But how can i get the Cust Name in that report. 2. Invoice No. - Pstng Date - Vendor No. - Vendor Na

  • My usb is not working

    My last 4 days one of my usb port in MAc book air is not functioning. i reformatted the system still the same error persists. need help to troubleshoot the problem

  • How do I get music off my iPad onto my new iMac?

    I've got CDs on there which I'd ripped onto my old iMac but weren't purchased from iTunes.  My old iMac was burgled so I now want to sync my iPad with the replacement.  When I tried to sync it I got a message saying the contents of my iPad would be e

  • Can I use two default route in a router

    Hi I have a router which have two isp line. I want connected two differnt remote site by two isp line. now i have one default and another static. i can use two default route like this ? 0.0.0.0 0.0.0.0 201.222.103.x 0 0.0.0.0 0.0.0.0 201.221.102.y 1

  • Error in drag and drop with a Tree component

    Hello, everybody. I'm doing a drag and drop with two trees. But, when I drag from a tree to another show this error: "oracle.job.RowNotFoundException:JBO25020: View line of oracle.jbo.Key[4.4] key not found in ViewTreeNodeRepository13_71." Besides th