Text jobs with images - printer cancels

When I print a text document with images the printer stops printing and cancels the print job when it starts to print any image.
Help
This question was solved.
View Solution.

Hey @sudiegal!
Thanks for posting on the HP Forums!
I would be happy to provide some suggestions that may resolve the issue.  I can see that the printer cancels the jobs when you add a photo to you text document.  The first thing I suggest is to remove the printer by resetting the print system.  After the printer is removed re-add the printer and try printing the document again. 
To reset the printing system:
1. Click the Apple icon at the top left of the computer
2. Click System Preferences
3. Click Printers and Scanners
4. Hold down the "control" key on the keyboard and click with the mouse in the white space bellow the printer
5. Click reset printing system dropdown
6. It may ask for Mac ID and will color wheel for a moment until the printer is removed
To re-add the printer:
1. Click the Apple icon at the top left of the computer
2. Click System Preferences
3. Click Printers and Scanners
4. Click the plus (+) icon under the printers list
5. Select your printer
6. Choose HP ENVY 7640 series in the dropdown next to "use" or "print using"
7. Click add
Please post back and let me know if this works out for you!
Cbert
I work on behalf of HP.
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" at the bottom of this post to say “Thanks” for helping!

Similar Messages

  • Text and solid images print as halftones

    I have a Xerox phaser 3250 with PCL6 emulation. Recently, whenever I create a document in Quark and print it, my text and solid images print as halftones as opposed to solid blacks. When I try to modify the PPD or any other device option in the print window, the option buttons are dimmed. Is this an issue with my printer or my OS or my software ? thanks

    That makes two of us.
    Bob

  • Replace tags with images

    Hi
    <br />I'm tryng to build a vb script that replace text tag with images.
    <br />Tags are like <%img=c:\logo.jpg%>. I need to replace the tag with the image c:\logo.jpg.
    <br />I try this (It didn't work). Can somebody help me?
    <br />thanks
    <br />
    <br />On Error Resume Next
    <br />
    <br />Set myInDesign = CreateObject("InDesign.Application.CS3")
    <br />Set myDocument = myInDesign.ActiveDocument
    <br />
    <br />Set myTextFrames = myDocument.TextFrames
    <br />'Get the total number of textframes
    <br />myTextFrameTotal = myTextFrames.Count
    <br />
    <br />REM : replace tag <%img=c:\logo.jpg%> image with image c:\logo.jpg
    <br />'Setup a loop through all textframes
    <br />For myloop = 1 To myTextFrameTotal
    <br />
    <br /> Set myTextFrame = myTextFrames.Item(myloop)
    <br />
    <br /> myCharacterCount = myTextFrame.Characters.Count
    <br /> If myCharacterCount &gt; 0 Then
    <br />
    <br /> id1= InStr(1, myTextFrame.Texts.Item(1).Contents, "<%img="  ,1)<br />        If  id1 >0  Then        <br />             id2= InStr(1,  myTextFrame.Texts.Item(1).Contents, "%>" ,1)
    <br /> If id1 &gt;0 Then
    <br />
    <br /> REM: image filename
    <br /> myFile = trim(Mid(myTextFrame.Texts.Item(1).Contents, id1+6, id2-id1-6) )
    <br /> REM: set tag to ""
    <br /> myTextFrame.Texts.ItemByRange(id1, id2).Item(1).Contents = ""
    <br />
    <br /> REM myTextFrame.Fit idFitOptions.idProportionally
    <br /> REM myTextFrame.Fit idFitOptions.idContentToFrame
    <br /> REM: insert image file
    <br /> myTextFrame.InsertionPoints.Item(1).Place (myFile)
    <br />
    <br /> end if
    <br /> end if
    <br /> end if
    <br />
    <br />Next 'Process the next text frame in text frames
    <br />
    <br />if Err.Number&gt;0 then MsgBox Err.Description + ", " &amp; Err.Source
    <br />
    <br />REM myPub.SaveAs ("")
    <br />REM myPub.Close
    <br />REM myInDesign.Quit
    <br />REM Set myDocument = Nothing
    <br />REM Set myInDesign = Nothing

    Hi Robert
    <br />Thanks for your help.
    <br />
    <br />I get this message error:
    <br />"Topic not optional. Vbscript error run time."
    <br />
    <br />The problem seems to be with instruction:
    <br /> myTextFrame.Texts.ItemByRange(id1, id2).Item(1).Contents = ""
    <br />and
    <br /> myTextFrame.InsertionPoints.Item(1).Place (myFile)
    <br />
    <br />Image is inserted but NON in the tag position and tag postion is not emptied.
    <br />
    <br />I do not understand if "id1, id2" for ItemByRange function are simple integer or must be a kinf of object.
    <br />
    <br />On Error Resume Next
    <br />
    <br />Set myInDesign = CreateObject("InDesign.Application.CS3")
    <br />Set myDocument = myInDesign.ActiveDocument
    <br />
    <br />Set myTextFrames = myDocument.TextFrames
    <br />'Get the total number of textframes
    <br />myTextFrameTotal = myTextFrames.Count
    <br />
    <br />msgbox myTextFrameTotal
    <br />
    <br />REM : replace tag <%img=c:\logo.jpg%> image with image c:\logo.jpg
    <br />'Setup a loop through all textframes
    <br />For myloop = 1 To myTextFrameTotal
    <br />
    <br /> Set myTextFrame = myTextFrames.Item(myloop)
    <br />
    <br /> myCharacterCount = myTextFrame.Characters.Count
    <br /> If myCharacterCount &gt; 0 Then
    <br />
    <br /> id1= InStr(1, myTextFrame.Texts.Item(1).Contents, "<%img="  ,1)<br />    If  id1 >0  Then        <br />       id2= InStr(1,  myTextFrame.Texts.Item(1).Contents, "%>" ,1)
    <br /> If id2 &gt;0 Then
    <br />
    <br /> REM: image filename
    <br /> myFile = trim(Mid(myTextFrame.Texts.Item(1).Contents, id1+6, id2-id1-6) )
    <br />
    <br /> msgbox myFile
    <br />
    <br /> REM: set tag to ""
    <br /> myTextFrame.Texts.ItemByRange(id1, id2).Item(1).Contents = ""
    <br />
    <br /> REM myTextFrame.Fit idFitOptions.idProportionally
    <br /> REM myTextFrame.Fit idFitOptions.idContentToFrame
    <br /> myTextFrame.InsertionPoints.Item(1).Place (myFile)
    <br />
    <br /> end if
    <br /> end if
    <br /> end if
    <br />
    <br /> if Err.Number&gt;0 then MsgBox Err.Description + ", " &amp; Err.Source
    <br />
    <br />Next 'Process the next text frame in text frames
    <br />
    <br />REM myPub.SaveAs ("")
    <br />REM myPub.Close
    <br />REM myInDesign.Quit
    <br />REM Set myDocument = Nothing
    <br />REM Set myInDesign = Nothing

  • Bad Image Printing

    I have a problem with image printing...
    When I draw lines, string ecc. in the Printer Graphic Context I don't have any problems, but when I try to load an imagefile the Printer (HP Deskjet 722C), prints a bad black square... :-(
    Anyone can help me???
    This is my code in the print method:
    Graphics2D gg = (Graphics2D) g;
    Image logo = Toolkit.getDefaultToolkit().getImage("logo.gif");
    gg.drawImage(logo,10,10,60,60,null);
    I don't use an ImageObserver

    This is my code in the print method:
    Graphics2D gg = (Graphics2D) g;
    Image logo =
    Toolkit.getDefaultToolkit().getImage("logo.gif");
    gg.drawImage(logo,10,10,60,60,null);
    I don't use an ImageObserverMaybe that is your Problem. Or not exactly, but you should make sure that the image is completely loaded when you start printing.
    You could try add this to your code:
         MediaTracker tracker = new MediaTracker(mainFrame);
         tracker.addImage(logo,0);
         try
              tracker.waitForID(0);
         } catch (InterruptedException e) {e.printStackTrace();}Where mainFrame is the component your Image is displayed on.
    hope that helps
    Skippy

  • Images printing over double page spreads

    Hi all,
    I was just about to order a new book through Aperture, when I looked closely at the PDF and noticed that there was image duplication when an image was placed across a double page spread - the duplication occurs right where the spine would be - about an inch (maybe less) or so of the photo is repeated on both the left and right pages. Has anyone else experienced a problem with this? Is this correct? Perhaps it's just allowing for the binding process. Any help gratefully taken - even more so if you could check your own printed books and see if there are any issues with images printed over a double page spread.
    Thanks,
    GT
    PS - rwboyer - I just emailed you privately about this as well, to include an image - sorry if that is terribly rude.

    Hi again,
    I've answered by own question (or had it answered by Apple) - DO NOT drag an image box over the spine - it will cause a significant amount of duplication of the image on both the left and right pages. This will be reflected in the print version.
    I've suggested to Apple that there should be something that stops users from doing this. In my opinion, it's not good enough that the software interface allows you to do this, only to screw it up at the print stage.
    GT

  • How to cancel print job with control panel on HP8610

    Is there a way to cancel a print using the control panel of the HP8610 rather than using task manager?
    This question was solved.
    View Solution.

    Welcome to the forums LucyRicky!
    I understand you are looking to cancel print jobs with your Officejet 8610. I have found 2 guides for you to show you how to cancel them.
    Windows: Cancel printing
    Mac: Archived - Mac OS X: How to Delete Printers and Print Job Lists in the Print Center
    I hope that helps resolve your question.
    Happy Thursday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Need help with duplicate print jobs over network that I can't cancel

    I have the Photosmart Premium All-in-One on my home network.  My kids who each have laptop running Windows 7 and are connected via wireless to the printer via a DLINK DIR-655.
    They hit the print button too many times and it keeps printing over and over again.
    Is there a way to get the printer to stop printing these duplicates.  I tried turning off/on but they just keep printing.
    We're wasting paper/ink and I need help with a solution.
    Please let me know.  Thanks.
    Angelo

    There should be a button with a red 'X' on it on the front of the printer.  This is the print cancel button.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • 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.

  • Trouble Printing PDF's scanned with Image Capture

    OK this is a strange problem.  I have Macbook Pro and a Lexmark E230 laser printer which prints everything out just fine in safari, word, pages, numbers - anything except PDF's that are specifially scanned with the Image Capture application.
    I printed four PDF's that were made from different sources, some just assembled JPEGs, one that was text printed from Pages, and another instruction manual randomly downloaded from the internet.  All printed fine.
    My wife and I scan a lot for our home business and any PDF that we have scanned using Image Capture prints only the first page, then hangs, and then the rest of the document does not print.  If I try to print the second or other pages manually, I get an error printed on the page saying :
    ERROR: limitcheck
    OFFENDING COMMAND: image
    STACK:
    And the image partially prints. 
    I am aware of all driver issues, have tried using old drivers, completely reset the print system using the OPTION and ( - ) key in the printer system prefs.  I have also used the most up to date drivers, nothing seems to change this.  I am also aware of a printers limitations as far as using images or PDFs with a lot of memory. 
    The thing that makes me confused is that this all seemed to work perfectly before (in Lion) and even during the inital stages of Mountain Lion.  At some point (this is on my wife's computer), I'm not sure when the issues started exactly, I was unable to print PDFs scanned with Image Capture properly.
    This used to work, now it doesn't.  Printer hasn't changed, types of documents haven't changed.  Any ideas?
    Thanks so much,
    Jim

    Welcome to Apple Discussions, bubblebanium!
    I have experienced your problem on several occasions and found the culprit to be a corrupt font. Try selecting everything in the document and changing it to a font that you are certain prints. If the problem persists, try copying everything and paste it into a new document. If your document is several pages, try printing one page to hone in on the problem.
    If the problem still persists, does your document have bullet items? If yes, and the bulleted items were created with the automatic bullet feature, then the problem may be the default font used for that feature (most likely the Symbol font).
    To change to a different font, go to the Format menu, select Bullets and Numbering. Click on the style of bullets your document uses and then click the Customize button. In the next window, click on the shape of bullet your document uses and then click the Font button below. A Font window appears in which you can then select a different font. Afterwards, if the document prints, then the default font is probably corrupt and you may want to replace it with a good copy.
    Hope this helps.

  • Adobe Prints Text as Double Image

    When I print pdf documents online[specifically http://content.educationdirectonline.com/course/VET010/online/vet010_088001.pdf ] the text prints out fuzzy, with a gray double image of the text right behind it, almost like a shadow. I've tried turning off the printer(Dell Photo Printer 720 with new black ink cartridge and full colored) to reset the cache, but it hasn't helped. The problem seems to be specific to Adobe, because I have printed text documents with notepad and they turn out fine.
    Also, I have tried changing scaling options, text rounding options, and even tried printing the pdf as an image, none of which have effected the problem I am experiencing.
    If anyone would help me solve this mystery it would be greatly appreciated! Thanks for taking the time to read through this.
    -Josh Lammon

    It seems to print fine for me. I would suspect that you may need to update your printer driver.
    What version of Reader are you using?

  • HP Officejet Pro 8600 all-in-one printer Cancels Print in Middle of Job

    My Printer began working fine, now it is suddenly stalling and cancelling the print job in the middle of printing.  Please let me know what I can do to fix this issue.

    Hi @mgsamuel, 
    I would be happy to help you with your Officejet 8600. I understand it was working well, now suddenly it is stalling and print jobs are cancelling on their own.
    Running the Print and Scan Doctor might help. The HP Print and Scan Doctor is a free utility (tool) that helps to quickly diagnose and resolve common printing, scanning and connectivity issues including but not limited to:
    Connectivity:
    USB: Verifies that the USB connection from your computer to the HP product is working correctly.
    Network: Verifies that the network connection between your computer and your network is working correctly.
    Device Status Test: Checks for device errors such as out of paper, paper jams, carriage stalls, and paper feed issues, and then provides instructions for fixing the error.
    Driver Check: Checks for missing or corrupt driver files.
    Device Manager: Checks for problems in Device Manager that would prevent printing.
    Device Online: Checks if the product has been paused or set to offline, and then sets the status back to online if necessary.
    Print Queue: Checks for and clears pending print jobs in the print queue (a log of print jobs waiting to print).
    Port Match: Checks the port settings for the HP product.
    Device Conflicts: Checks for conflicts with other drivers, such as other printer brands.
    Ink Issues: Checks the cartridges and ink levels for issues that affect print quality.
    Print Settings: Checks and adjusts the print quality settings.
    Test Print: Prints a test page for print quality evaluation, and provides options for cleaning and aligning the printhead if necessary.
    Scan Tests: Checks the scan mechanism, drivers, and registry entries.
    Source:Try the HP Print and Scan Doctor for Windows
    Click here to download and run the Print and Scan Doctor> >>>>> www.hp.com/go/tools
    If that does not resolve the issue, post back and let me know if there are any symbols other than green check marks and what they are next to of course. The wrench is not always easy to spot as the wrench and the check mart are in the green circle.
    If you see only green check marks (), the tool did not find any problems.
    If you see green wrenches (), the utility identified an issue and corrected it automatically.
    If you see yellow exclamation points (), the test failed and required user action, but the step was skipped.
    If you see a red X (), follow the on-screen instructions to resolve the issue.
    Please use the thumbs up below if you happy with my efforts to help. If the issue persists, I will do all I can to help works towards a solution. Thanks, I look forward to hearing back from you.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Printing Text below Blob Images to PDF

    Hi......I have designed a report to print to PDF. The report will be populated dynamically with blob images anything between 1 to 6 images displayed 2 per row with a text description appearing below each image.
    However in certain cases where the other information above the images are long, the images printing overflows into 2 pages. In those circumstances, sometimes i get the text description appearing at the side of the image instead of below it.
    Please look at this PDF link showing the above case: Link: [Sample PDF|http://203.211.146.160/website/Sample.pdf]
    Any help would be greatly appreciated

    Does it work if you are not formating with multiple columns? Sometimes formating with multiple columns can be tricky.
    I just looked at your sample again and it is pushing the text to the next column before starting a new page.  Try splitting the detail line with the text in detail B, and make sure DETAIL still says keep together.
    You may just be stuck with it,
    Edited by: DebiHerbert on Jan 19, 2011 8:04 AM

  • Printing Buttons with Images

    In my application, I am attempting to print a document that has both buttons with text and buttons with images, along with plain text.
    When I print, the buttons with the images are larger than they ought to be (i.e. they don't fit within the area they were suppose to be drawn within (btw, for this application, I am using absolute positioning)).
    However, this does NOT occur with the buttons that have only text and no image.
    Can anybody tell me why this might be? It seems that to printing a JButton comes from the functionallity of JComponent.print, which simply sets a few printing flags and calls JComponent.paint.
    So whatever changes those flags make, I would think they ought to effect all buttons the same?
    Has anybody else run into this problem, and possibly found a solution for it?

    myJButton.setSize(new java.awt.Dimension(<width>,<height>));
    that line should do it. keep in mind that that will not resize your image. since you are using absolute positioning I will assume your button is of constant size. you should manually resize your images to be of the proper size for your buttons.

  • Print job problems with AEBS - jobs don't print until another job is sent

    I have been experiencing an anomaly with my printer not printing the last page of multipage documents since getting our AEBS with Gigabit Ethernet. Before getting the AEBSs, I had two Linksys routers that were performing well, but would crash regularly. I recently purchased two AEBS router to replace my two Linksys routers. I have the latest AEBS, and an older AEBS M8799LL/A sometimes referred to as the UFO or Crow’s Nest. My printer is a networkable HP Color LaserJet 2550n.
    When the Apple Tech Support person could not get this printer to work when attached to an Ethernet port, they suggested that I attach it to the USB port. I finally got it to work with our Macs, and Windows XP running in Parallels using Bonjour. What we noticed right away was that the printer was taking longer to respond than when we were using it as a network printer under our previous Linksys network. Another thing that happened was that frequently a print job would not appear to have been sent (spooled?) to the printer so we would issue the print command after waiting a couple of minutes and end up with two copies of what we were printing. Yesterday I was printing a basic 5 page text document from Pages and the last page did not print. So I created a document with just a ‘.’ and sent it to the printer. Out came the last page of my five page Pages document and the document with just a ‘.’. The AEBS does appear to be somewhat more stable than our Linksys equipment, but getting printer to work properly has been very frustrating.
    Is anyone aware of what might be causing this problem. At first I was blaming Windows, but it is happening very frequently when printing basic documents in Mac OS X 10.4-Tiger. Any help would be very much appreciated.

    Ah the self healing properties of OSX. This problem appears to have fixed itself.

  • Replace text with images

    Hi,
    I'm using a script found here, to replace @equ001.pdf@ with the corresponding image, same for eq002 etc.
    This script works more or less ok for me.
    Sometimes, it removes some image names without replacing the image, sometimes it was leaving some "@" here and there.
    Sometimes, it's giving me an error on the "place image" code, saying it cannot find the image, giving it's path ending with the grep expression $2 and doesn't work at all.
    Sometimes it does part of the job, stops, gives the same error as above, and continues to work when I click ok.
    Today, it didn't worked on a document. I copied the text to work on into a new InDesign document an there, it worked (but in two times).
    Is there any other way of doing this ?
    if(app.documents.length != 0){
        var myFolder = Folder.selectDialog ('Choose a folder with images');
        if(myFolder != null){
            // reset the Find/Change dialog
            app.findGrepPreferences = app.changeGrepPreferences = null;
            // formulate a grep search string
            app.findGrepPreferences.findWhat = '@.+?@';
            // find all occurrence, last one first
            f = app.activeDocument.findGrep (true);
            for (i = 0; i < f.length; i++){
                // construct file name
                name = f[i].contents.replace (/@/g, '');
                // place the image
                var placedObjects = f[i].insertionPoints[0].place (File (myFolder.fsName + '/' + name));
        // delete all @??@ codes
        app.activeDocument.changeGrep();
    else{
       alert('Please open a document and try again.');

    You should process the found instances back to front:
    for (i = f.length-1; i >= 0; i--)
    Peter

Maybe you are looking for