Image is getting printed on 72 DPI, plz help me

I want to print an image on 300 dpi without scalling
if anybody can help me
thanks in advance

Greetings Abhyuday Deo,
After reviewing your post, I have located an article that can help with that specific error. It contains a number of troubleshooting steps and helpful advice for the issue you are experiencing:
iTunes Store: "Error (-50)" when downloading purchased content - Apple Support
This alert may appear when you try to download purchased content from the iTunes Store: "There was an error downloading your purchased music. An unknown error occurred (-50)."
This can happen when a connection timeout occurs while you're downloading purchased content from the iTunes Store. For example, certain types of software may affect how a computer sends and receives information from the Internet:
Firewalls
Web Accelerators
Ad Filters
Virus Protection Software
If you have any of the software listed above and you can't access the iTunes Store or complete your download, you'll need to configure the software to allow iTunes to connect to the Internet and to allow the following domains to send and receive data from the Internet:
itunes.apple.com
ax.itunes.apple.com
albert.apple.com
gs.apple.com
deimos3.apple.com
phobos.apple.com
Refer to the documentation that came with that software and, if necessary, contact the software's manufacturer.
You can also try these steps:
If a web accelerator could be causing the issue, contact your Internet Service Provider (ISP) or the software manufacturer.
If your computer is on a network, try using a different computer on the network or discussing the issue with the network administrator.
Thank you for contributing to Apple Support Communities.
Best,
Bobby_D

Similar Messages

  • How to print text/data in flex 3 using printer???Plz help...

       Hi,
              plz tell me the way to print text/data using printer in flex.  I tried the FlexPrintJob class. but it takes object of a container to be printed & prints the visible content of that container(along with scrollbars), bt i want to print all contents of the container(including invisible).
          I have tried to print bitmap image through FlexPrintJob but it takes lot of time for spooling... So plz help me out in printing(fast with all content) in flash
    I am using flex 3 (flex Builder 3 IDE).
      Thanks in advance!!!

    Hi Sagar,
    Don't worry You can use the below work around to print all the contents of the Container including the invisible contents under scrolll with out scroll bar..
    So what the idea here is we are seeting the container height to full size with out scrolls before sending the container object to printer and as soon as you print the object you are restoring it to the original height with scrolls...so that you can print the full contents without scrolls...
    You may have doubt that by chnaging and restoring the size the user may see momentary resize of the container but it is not so as it is a fraction of a second and user cannot notice this change... Give it a try ..I had already run into this problem recently and I have found a work around for this which is as below:
    // Here mainContainer is the container or box id the contents of which you want to print
       private function doPrintContainer():void
        var printJob:FlexPrintJob = new FlexPrintJob();
        if(printJob.start() != true) return;
        try
         var mainContainerHeight:int = mainContainer.height;
         //Increasing the height of the desired component to be printed.
         mainContainer.height = mainContainer.measuredMinHeight;
         mainContainer.verticalScrollPolicy = "off";
         //Adding the resized Component to our FlexPrintjob and then sending the print request
         printJob.addObject(this,FlexPrintJobScaleType.MATCH_WIDTH);    
         printJob.send();
         //Resizing the component back to normal size
         mainContainer.height = mainContainerHeight;
         mainContainer.verticalScrollPolicy = "auto";    
        catch(error:Error)
                     trace("Error : " + error.message);
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • Not getting the chat  application?Plz Help

    Hai,
    Plz help me to solve this...This is my code:
    Correct me
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Script>
            <![CDATA[
                import mx.messaging.channels.NetConnectionChannel;
                private const sAddress:String = "rtmfp://stratus.adobe.com";
                private const dKey:String = "Developer Key" ;
                private var nc:NetConnection;
                private var myPeerID:string;
                private var farPeerID:String;
                private var sendStream:NetStream;
                private var recvStream:NetStream;
                private function initConnection():void
                    if(t1.text)
                        farpeerID = t1.text;
                    nc = new NetConnection;
                    nc.addEventListener(NetstatusEvent.NET_STATUS,ncStatus);
                    nc.connect(sAddress+dKey);
                private function ncStatus(event:NetStatusEvent):void
                    trace(event.info.code);
                    myPeerID = nc.nearID;
                    t1.text = myPeerID;
                private function initSendstream():void
                    trace("initSendstream");
                    sendStream = new Netstream(nc,NetStream.DIRECT_CONNECTIONS);
                    sendStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    sendstream.publish("media");
                    var sendStreamClient:Object = new Object();
                    sendstreamClient.onPeerConnect = function(callerns:Netstream):Boolean
                        farPeerID = callerns.farID;
                        trace("onPeerConnect "+farPeerID);
                        return true;
                    sendStream.client = sendstreamClient;
                private function initReceiveStream():void
                    recvStream = new NetStream(nc,farPeerID);
                    recvstream.addEventListener(NetStatus.NET_STATUS,netStatusHandler);
                    recvstream.play("media");
                    recvStream.client = this;
                public function receiveSomeData(str:string):void
                    t3.text = str;
                private function sendSomeData():void
                    sendStream.send("receiveSomeData",t2.text);
                private function netStatusHandler(event:NetStatus):void
                    trace(event.info.code);
            ]]>
        </mx:Script>
        <mx:TextInput x="22" y="10" width="235" id="t1"/>
        <mx:Button x="265" y="10" label="Connect" click="initConnection"/>
        <mx:TextInput x="22" y="40" id="t2"/>
        <mx:Button x="190" y="40" label="send Data" click="sendSomeData()"/>
        <mx:TextInput x="22" y="70" id="t3" width="252"/>
        <mx:Button x="22" y="100" label="initSendStream" click="initSendstream()"/>
        <mx:Button x="174" y="100" label="initReceiveStream" click="initReceivestream();"/>
    </mx:Application>
    ERRORS:
    1046: Type was not found or was not a compile-time constant: NetStatus.    p2p/src    p2p.mxml    line 63    1266493948995    203
    1046: Type was not found or was not a compile-time constant: Netstream.    p2p/src    p2p.mxml    line 40    1266493948980    201
    1046: Type was not found or was not a compile-time constant: string.    p2p/src    p2p.mxml    line 55    1266493948980    202

    ActionScript is case-sensitive and spelling-sensitive.  line 40, it's "NetStream" not "Netstream".  line 55, it's "String" not "string".  line 63, it's "NetStatusEvent" not "NetStatus".  and as i believe i pointed out in a different thread, there must be a slash between "rtmfp://stratus.adobe.com" and your developer key.

  • Trying to diplay jpg images in JSP.....plz help

    I have a set of jpg images that I have stored in my server, not in a database. So far, my code can iterate over the directory the images are stored in and can display them as links that users can click on. I can locally click on these links and see the images pop up but anybody outside on the internet can see these links but when clicked upon, show nothing. Here is my code so far.
    <h1>Welcome to the CT Image page </h1>
    <hr>
    <%
    String SS = request.getParameter("Social Security");
    String directory = "d:\\temp\\Tomcat\\jakarta-tomcat-4.0.3\\webapps\\ROOT\\Mproject\\CT-Images\\" + SS;
    File dataDir = new File(directory);
    if(!(dataDir.exists()) && !(dataDir.isDirectory()))
    %>
         <jsp:forward page = "Reject2.jsp" />
    <%
    File[] listing = dataDir.listFiles();
    for(int x = 0; x < listing.length; x++)
         out.println("<li>" + " <a href = "+ listing[x] +" " +"</a>" + "</li>");
         out.println(listing[x]);
    %>
    I am wondering how to I go about making these images avaiable to be viewed by ppl on the internet who is accessing my server. Any help on this matter is greatly appreciated. Thank you
    Andrew

    Whether you want to have links to the images or put them in the page directly, you have the same problems:
    File[] listing = dataDir.listFiles();
    out.println("<li><a href=\""+ listing[x] +"\">" + listing[x] + "</a></li>");First was that you have bad HTML formatting in your "list" elements. It should be more like above.
    Second, the values for listing[x] are not correct for the web page. The values are going to end up being files, which should print out the absolute path of that File, so you'd get something like this:
    d:\\temp\\Tomcat\\jakarta-tomcat-4.0.3\\webapps\\ROOT\\Mproject\\CT-Images\\xxxxx\\image1.jpg
    This would only ever work on your PC, cuz this is not the proper way to write URLs for a web site. You want the image URLs to be like this:
    /Mproject/CT-Images/xxxxx/image1.jpg
    So that it's a relative path to the image from the server's root directory. If you know ahead of time that the path is always going to be that, you can have this:
    String directory = "d:\\..........." + SS;
    String basepath = "/Mproject/CT-Images/" + SS + "/";
    File[] listing = dataDir.listFiles();
    String filename = listing[x].getName();
    out.println("<li><a href=\""+ basepath + filename +"\">" + filename + "</a></li>");
    // or to just show the image
    out.println("<img src=\""+ basepath + filename +"\" />");

  • Hi Guys,,I am not getting the right output?Plz help

    Hi Guys,
    Here is my code..
    ELSEIF p_versb  = 'W2'.
        CONCATENATE lv_perxx '08' INTO lv_date3.              (20090708)
        CONCATENATE lv_perxx '15' INTO lv_date4.              (20090715)
          SELECT  mseg~mblnr
                  mseg~bwart
                  mseg~matnr
                  mseg~lgort
                  mseg~menge
                  FROM mseg
                  INNER JOIN  mkpf
                  ON msegmblnr = mkpfmblnr
                  INTO TABLE t_temp
                  FOR ALL ENTRIES IN t_firmplan
                  WHERE mseg~matnr = t_firmplan-matnr       (490045,500001)
                  AND mkpf~budat GE lv_date3
                  AND mkpf~budat LE lv_date4
                  AND mseg~bwart IN ('101', '102')
                  AND mseg~werks = t_firmplan-werks.        (werks = 1100)
    Plz suggest where I m wrong ?
    Thanks
    Steve

    Hi,
    Check the
    SELECT mseg~mblnr
    mseg~bwart
    mseg~matnr
    mseg~lgort
    mseg~menge
    FROM mseg
    INNER JOIN mkpf
    ON mseg~mblnr = mkpf~mblnr
    INTO TABLE t_temp
    FOR ALL ENTRIES IN t_firmplan
    WHERE mseg~matnr = t_firmplan-matnr (490045,500001) " Check the matnr value in the MSEG table if it storing with
                                                  "  leading zero's then use the conversion exit to get the leading zero's
                                                  " in  t_firmplan-matnr
    AND mkpf~budat GE lv_date3
    AND mkpf~budat LE lv_date4
    AND mseg~bwart IN ('101', '102')
    AND mseg~werks = t_firmplan-werks. (werks = 1100)

  • I m getting error to access apex plz help

    hi anyone ,
    help me
    my error log is..
    [Wed Aug 01 15:57:10 2007] [notice] FastCGI: process manager initialized
    [Wed Aug 01 15:57:15 2007] [error] [client 192.168.0.27] [ecid: 1185964034:192.168.0.27:1040:484:1,0] mod_plsql: /pls/apex/apex HTTP-404
    apex: PROCEDURE DOESN'T EXIST
    [Wed Aug 01 15:57:22 2007] [error] [client 192.168.0.27] [ecid: 1185964042:192.168.0.27:1040:484:2,0] mod_plsql: /pls/apex/apex HTTP-404
    apex: PROCEDURE DOESN'T EXIST
    entry in .dads file
    <Location /pls/apex>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDatabaseConnectString narendra:1521:sipl
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword siplapex
    Allow from all
    </Location>
    and i getting this error on page
    The requested URL /pls/apex/apex was not found on this server.

    Hi
    at last i getting this ,bcoz of this have any problem
    ...create null.sql
    timing for: Grants
    Elapsed: 00:00:00.02
    VI. I N S T A L L F L O W S
    define "^" (hex 5e)
    ...design time flows
    APPLICATION 4411 - APEX - System Messages
    Set Credentials...
    begin
    ERROR at line 1:
    ORA-04063: package body "FLOWS_030000.WWV_FLOW_API" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 4
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    F:\apex>

  • When i try to save an image i get a runtime error

    when I try to save an image I get a runtime error

    Can anyone please help me? At this point I'm ready to just give up and use internet explorer. I don't understand why this is happening.

  • Plz help me from the error - "org.apache.jasper.jasperException"

    I am getting error with this code ,plz help me out ,i wanna correct this urgently
    I've set the Environment variables JAVA_HOME and
    CATALINA_HOME and here is my coding and error report
                   hello.html
    <head><title>Database</title></head>
    <body>
    <form method="get" action="add.jsp">
    <pre>
    <center>Enter ur Name :<input type="text" name="nam" >
    <br><input type="submit" value=" Add ">
    </center></pre>
    </form>
    </body>
    </html>
                   add.jsp
    <%@ page language="java" %>
    <%@ page import="java.sql.*" %>
    <html>
    <head><title>JSP</title></head>
    <%! String name;
    Connection con=null;
    Statement st=null;
    %>
    <body>
    <% name=request.getParameter("nam");
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    //I have created a User DSN sjp
    con = DriverManager.getConnection("jdbc:odbc:sjp");
    st = con.createStatement();
    st.executeUpdate("insert into detail values('"+name+"')");
    catch(Exception e)
    con.close();
    st.close();
    %>
    <h1> Name Added</h1>
    </body>
    </html>
                   Error
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:207)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    root cause
    java.lang.NullPointerException     at org.apache.jsp.add_jsp._jspService(add_jsp.java:66)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    Apache Tomcat/4.1.31

    hi,
    when i use the code
    if(st != null)st.close();
    if(con != null ) con.close();
    that works good ,the old error has been corrected.
    but it's now throwing an SQLException[b] "datasource name not found and default driver not specified" why this occurs and also can u give me the explanation for the old error????
    I am sure that i have created an user DSN, i am 100% sure about it .even though there is an error.
    Deepak.
    Deepak.C

  • Listen, im REALLY frustrated, so, PLZ, PLZ, MPLZ, PLZ, PLZ, PLZ, PLZ, HELP!

    ok, long story short:
    i plugged my ipod into my comp.
    it beeped(never done that b4)
    it said it was, like, unreadable(i just clicked sync as mentioned below)
    i synced it
    not all my music went onto it(im not sure, but: it said that thing where there are ((some number)) of total problems, and, like, it cant sync them cuz it doesnt kno where the file is or somethin, but, my library says it has like, 872 songs, but my ipod says it has like, 769, so im not sure
    there are only 83 songs that dont have the little exclamation point
    (((((Oh, by the way, i kno that u can like, double-click them to choos the file, but, i cant, cuz, b4, i had to get my music from my ipod to the comp and i manually moved the music folder, so, in that folder, all there are are names like: YVVO, APRH, and stuff like that, so, i dont kno whats what, and i also dont kno how to get my music back, so, plz help me!)))))
    how do i get my music back?
    if u need more details to help me, just ask, ill tell u!
    Plz, plz, plz, plz, plz, plz, plz, plz, plz help me!!!!

    http://support.apple.com/kb/ht1808

  • Can't get photoshop elements 12 to print multiple copies of an image with one print job? what to do?

    Can't get photoshop elements 12 to print multiple copies of an image with one print job

    How do I do that? I'm the only user on the laptop - I kind of assumed I already was running the install as the admin.

  • Print image file with at least 150 DPI

    Happy NI Week everyone!  I couldn't make it this year, but I am working to encourage the pruchase of lots of NI hardware.
    We know about printing the front panel of a VI as a quick and somewhat dirty way to generate a report.  I know DIAdem would be the superior solution here, but I wonder if there's a middle ground.  Recently, a customer requested some minor changes to an application and one of the requests was to "clean up" the way their logo looks on a printout.  They supplied us with a high resolution version of their logo, and we tried converting it to various formats before pasting it on the front panel, but the printout seems to always be rather blocky and low resolution looking.  My thought is that the front panel is rendered at 72 DPI (dots-per-inch) and the data sent to the printer is at that resolution.  I know we can save an image of a front panel.  So what I would like to do is make an oversized front panel, save it as an image file, and print that image file at 150 or 300 DPI.
    So the question is:  How do I print an image file at a different DPI than what it was originally saved with?  What is a good method to print image files for that matter?
    Thanks,
    Dan Press
    PrimeTest Automation

    Hi Photon Dan,
    Here is a possible solution. It requires some photo editing. You could take a normal screen shot of your front panel and then import it into a photo editor such as IrfanView. From that point you could resize the image and make it very large. This will make the image quality very poor. At this point you could import the high resolution image from your client and paste it over the poor quality image in the screen shot. Then resize it back to its normal size. You should then be able to select what DPI you would like to print it at and will have a high quality logo. Lots of photo editing but it could give you what you want. 
    Regards, 
    Josh Brown
    Applications Engineer
    National Instruments

  • Image 292 dpi, will print at 300 dpi

    Hello, I'm working on a magazine and we would really like to have a certain photo, but unfortunately it's a bit too small. When placed and resized correctly InDesign tells me that the image is at 292 dpi, it will be printed at 300 dpi. I understand that this could be printer specific, but how do you think the result will be? Will 8 dpi off be noticeable? Of course if possible I will print that specific image. But if not, would you take the risk of having an image at 292 dpi hoping it will be alright?
    EDIT: Oh, some info: it's going to be printed on A4, the photo in question will be 213 mm x 88.25 mm at the top of the page.

    All image resolution requirements that you may here are generally really guidelines. Assuming you are printing via either a PDF or PostScript workflow, all the images are resampled during the RIP's separation and halftoning process anyway. Don't sweat over the difference between 292dpi and 300dpi (although some under-educated prepress people may claim that the 292dpi is not good enough and refuse to print it.
              - Dov

  • Trying to print from My Image Garden; get msg "An internal error has occured

    I am running from MX922. Trying to print from My Image Garden; get msg "An internal error has occurred" I have updated from the Canon website, but still  it freezes up.

    Hi tthaas30,
    If you temporarily disable any antivirus or firewall software that is on your computer and then attempt to print again, do you still experience the same issue?
    If this is a time-sensitive matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How to change print size and DPI setting in Aperture

    If I import a raw image from my camera (D2X) to Aperture and print the image at about 8"x10" through Aperture, it prints at about 300 DPI, if I change to size of the same image to 12"x18", in Aperture, it prints the image at about 166 DPI. I do not believe there is a way to change this in Aperture.
    My question is, can I open the image at 8"x10" in PS, change the size and resolution to 12"x18" and 300 DPI then save it, open it again in Aperture and print it. If I do these things, will the image printed in Aperture still be 300 DPI and how can I check it to see if that is the case?
    I have not been able to find the DPI setting anywhere in Aperture to confirm that it is what I want or need.

    "You can make the pixels bigger by making the image larger but you can't add any more pixels without running some kind of interpolation filtration like GenuineFractals or a recomputation like bicubic."
    Thank you for your explanation and that brings me exactly to the point of my question.
    Can I interpolate my original NEF raw image after conversion by Aperture to a much larger image for print using something similar to what Photoshop does with it's bicubic smoother or as is done in genuine fractals or must I go out of Aperture and back if I want to print with Aperture. I am hoping you will tell me that Aperture is or will be capable of interpolating an image to a larger one with more than just the pixels supplied by the camera. I do not belive that these are not enough by themselves to print a quality image in a much larger size.
    I may be wrong, but I believe that it is somewhat common practice to interpolate an image to get a greater resolution printed image at a size larger that what is possible with a resolution provided by the (D2x in my case) DSLR camera.
    Or is this just a tempest in a teapot. In other words, will I be able to take the image out of the D2x (12.5 megapixels) and print a 13x 19" image with the same quality in Aperture (uninterpolated but enlarged) as an interpolated image in PS or Genuine Fractals and then in PS?
    Thank you

  • (New slant on) Printing at 1200 dpi from inDesign CS5 to a Xerox colour laser.

    I print calendars magazines and stuff like that.
    If I use Photoshop CS3~CS5 I can print a 600 dpi photograph to my Postscript 3 enabled Xerox 1200 dpi laser and get quite good appearance of the photo. Even better if I use a 1200 dpi image in the first place but when I use inDesign CS4~CS5 I can't print to the Xerox at anything over 600 dpi. Sure I can place a 1200 dpi image in the document but it still prints at a resolution that looks suspiciously like 300 dpi and the option to print at 1200 dpi is not available to me. I've filled the xerox to capacity with RAM and have a hard drive in it to store popular documents on.
    I've explored many ways some associates and posters to these forums have suggested but I still can't get the quality of print from inDesign that I get from Photoshop (or for that matter a popular page layout program from Canada).
    The perplexing thing I have yet to find the answer to is:
    Commercial printing presses print at 2400 dpi. (let's not confuse the issue here with lpi screens) inDesign is supposedly a professional level program, you'd think would be capable of delivering 2400 dpi output if commercial presses use that resolution. If this is so... Can anyone tell me please how to make inDesign output 2400 or even 1200 dpi?
    I've tried distilling the document to a PDF and using pure postscript to no avail. If the printer did not accept 1200 dpi images from Photoshop, I might be tempted to believe it was a printer issue but I'm satisfied it is not. I might point out that I also have an old Minolta (Postscript 3) colour laser too. It produces better quality output than the Xerox but at a huge cost of consumables. I also recognise the Xerox is a LED laser and not the ideal choice for image reproduction but still quite good enough (from Photoshop) for the work it is doing.
    Thanks in advance

    "John... You seem to be knowledgable in the area of RIPs and platemaking so here's a question you might care to answer. Suppose my platemaker can make a plate at 5080 dpi. (Forget the screening pitch for now) how do send an inDesign document to the platemaker at 5080 dpi resolution? For that matter how do I send any device a document at more than 600 dpi using inDesign? Answer that and you've answered my original question."
    ID's "Print Presets" for Postscript output are based on the RIP's PPD.  Since I do not have a RIP connected to my current workstation, the preset defaults to 'device independent'.  The only setting for resolution is the transparency flattener which can be set to "High Resolution".  You should be able to use the Xerox's RIP PPD in the "Print Presets" under File > Print Presets; where the output resolution should be able to be established.  My hunch is, you may have to settle for "High Resolution" and the RIP will output the highest resolution available in the Xerox machine ( if there are no options for resolution in the presets ).
    "The only way I can import an indesign PDF into a my pagesetter is to interpolate the images to 1200 ppi seperately from the text and line art which can be 300 dpi or ppi without showing discernable difference. Perhaps your reply in this area was regarding text, not images?"
    No.  This is backwards.  Text and line art is set at output resolution ( i.e., 2540dpi ).  You would definitely see a different between 300dpi vs. 2540dpi, especially in small text and the smoothness of lines.  Adobe has a Postscript formula for output resolution. I quote from their Print Publishing Guide "The maximum number of grays that most output devices can produce is 256."  Their Postscript formula is ( output resolution ÷ screen ruling )2 [ squared ] + 1 = shades of Gray.  So, typical offset imagesetter = 2540dpi ÷ 150lpi = 17 x 17 = 289 + 1 = 290 levels of gray.  More than enough to generate smooth blends.  In short, lasers ( or, in your case, LEDs ) typically cannot generate enough resolution to produce what you want.  Which is 1200ppi image resolution(?).  1/1200 LED is about half of what you need for the resolutions you're looking for.
    The long and short of it is this.  InDesign is capable of setting its resolution as "High" for raster setting ( i.e., transparency flattener ).  I agree with you it is frustrating that you cannot set the output res anywhere in ID.  I believe that is because it ( the resolution ) is left up to either the RIP or the Print Driver ).
    "The perplexing thing I have yet to find the answer to is:
    Commercial printing presses print at 2400 dpi. (let's not confuse the issue here with lpi screens)"
    No.  The standard is 5080dpi; 2540dpi is minimum ( see my Postscript levels of Gray formula above.  When I prepare an ID file for offset printing, I first have to determine the print vendor's RIP LPi.  This number determines image resolution which, typically is referred to as 2x the LPi.  LPi is ( or should be ) determined by the press itself, the paper, and the inks.  Desktop lasers are totally different.  InDesign does the user a favor by defaulting to device independent so that multiple file do not have to be generated for proofing.  Adobe leaves the print resolutions up to the output device.

Maybe you are looking for

  • Why do the songs in my playlist not appear in the same order on my ipod as i have them on the computer

    When I arrange the songs on my ipod the way I want them, I disconnect my ipod from the computer and they are not in the order I created. Why does this keep happening--it makes me insane.  I have tried clicking "manually manage" vs. "not manually mana

  • IPhone Does Not Appear in iTunes

    Hi! My iPhone 3GS does not appear in iTunes. It is recognised by Windows. It is recognised by iTunes in my desktop PC, but the problem is when I use my Samsung NC10 portable notebook. I am using Windows XP Home, version 2002, with SP3. iTunes is vers

  • AFTER receiving a text message, how to turn off sound on Palm Pre

    Someone has to help me with this, because I'm at my wits' end! I used to have a Palm Centro, and really, any other phone before my new Palm Pre, goes something like this: 1. You get a notification ring(s) when you receive a new voicemail or text mess

  • Flex SDK or air sdk

    hi iam new to flex iam using Adobe flash builder 4.6 when i open the application.xml file i see this   xmlns="http://ns.adobe.com/air/application/3.9" is the the final sdk version or not if not what should i dowanlod the air sdk or flex sdk and what

  • Flash 10.1.53.64 - no flashlog.txt logging

    Configuration: Windows XP SP3 x86 FlashDevelop IDE 3.2.1 Flex SDK 3.5.0.12683 Browsers: Firefox 3.6.4 (with Firebug and Flashbug) and IE8 Flash Player Debugger 10.1.53.64 Issue Overview: Since upgrading from the debug player 10.0.45.2 to the latest 1