Printing pencil added text into pdf

Dear all,
I am using Adobe Acrobat version 7 to correct school tests with the use of stamps. Everything works fine with stamps. Now, I would also like to underline from time to time using e.g. pencil tool. However, when I select to print a pdf with pencil added notes (underlining etc.), the printout does not have anything marked up. I looked through the online forums, help in Adobe and with no luck. Is there any way to have these elements print on my machine ? I tried various printers already on various system with no luck ...
Thank You for Your time
Regards
Marek

In the print dialog, make sure that "Document and Markups" is selected under Comments and Forms (this is from Acrobat 8, in version 7 the wording might be a bit different).

Similar Messages

  • How to use OCR Font A type by the time of writing some text into Pdf fil

    Hi,
    I am generating one pdf file in java. How can I use OCR Font A for text of pdf file ..Please can any one help where can I get OCR Font A and how to use that one in java ... I want to write some text into pdf file and that text should use OCR Font A family ...
    Thanks.

    This document shows how to disable OCR during conversion; just do the opposite: https://forums.adobe.com/docs/DOC-3062

  • Jar file to convert text into pdf

    java coding or jar file to convert text file into pdf. i dont want exe file...
    any converter to convert text into pdf.... to run in a webapplication

    This website is used to convert Word, Text , Excel file into pdf. I think it is useful to you.
    http://www.planetpdf.com
    Message was edited by:
    ggopi

  • Print/Save Selected Text to PDF

    I want to use Mozilla Firefox very much for a long time. I like it because the UI is very clean, easy to use, the icon vey pretty. When I use in my Android Mobile, it is very easy and intelligent to select content of page site. Very good!
    But I had to install Chrome instead so I've always been using "Print a selected content to PDF" but I couldn't find ways to do that with Firefox. Chrome is doing very good.
    I searched all add-ons, pdf printer software but they are only saving or printing all the page (website) to PDF.
    Please help me the ways to save a selected content to PDF. Thanks very much.

    Hii hanh01001..
    I think i know one solution to the problem
    https://addons.mozilla.org/en-US/firefox/addon/print-selected-text/?src=api
    this is an add on that is used to print the selected text only..
    have a nice day :) :)
    ---Thanks tracy :)

  • Print progress window distilling into PDF

    I am running an ahlar vellum cad product and trying to print to pdf driver. I am getting a print progress window burned into my pdf. How do I turn off the print progress window?

    Adobe is capturing the print progress window and distilling it into my pdf file. When I view the pdf, the print progress screen is in the middle of what would be otherwise a good pdf file. It appears Adobe is distilling what is on the screen directly to a pdf file. How can I keep the print progress screen from appearing when I print to the Adobe pdf printer? This seems to be the easiest way to correct the problem but I have yet to find anything that would turn off the print progress window.

  • Inputting Chinese text into PDF form fields

    Hi there,
    I'm trying to input Chinese text into an interactive PDF and although the properties for the form fields are set to Hiragino Sans GB, when inputting the text is appearing in English. Any ideas how to resolve this?

    Staff have been migrated from Windows XP and now have Windows 7 on their PCs. They all now have new versions of Adobe Reader
    (version 11.0.06). In some cases they now cannot insert or update variable data in fields in PDF forms. They are not using online PDFs  -
    they are using PDFs on their PCs. 

  • Adding text into strobe player skin

    hi
        is there any way to add text into strobe media player skin?

    hi
      i want to integrate overlay text adds into strobe media player

  • Adding text to PDF using iText instead of CFPDF

    Hi,
    I know this may seem a bit off topic being posted here but i'm asking this board since i'm a complete JAVA noob and i figure some of you CF folk might have had to do this before.
    Anyway, about my question...i'm already adding a watermark image to a pdf using iText (CF8) thanks to the help of fellow poster (=cfSearching=).  What i'm looking for is the best way to go about adding some text to this same pdf.  I need to add 4 lines of text (with specific font and size) and center it underneath the added image.   Does anyone have a site they could point me to as to how to add formatted text and how to get the width of that text so as to align it correctly?  I've search Google and looked at a lot of JAVA code but being a JAVA noob it's tough to figure out exactly which libs and methods can be used to do this. 
    Any help would be greatly appreciated!
    -Michael

    Hi again!
    Well, the merged image is an idea but i'd rather have it be actual text so that it is at least copy/paste-able if viewed on a computer.
    The four lines of text are dynamic (company name, broker name, phone number, email address) and limited to 40 characters.  Right now they are being added via CFPDF and DDX and use the following code in the DDX file to add it to the PDF.
    <PDF result="DestinationFile">
         <PDF source="SourceFile">
              <Watermark
              rotation="0"
              opacity="100%"
              horizontalAnchor="#horzAnchor#"
              horizontalOffset="#horzOffset#"
              verticalAnchor="#vertAnchor#"
              verticalOffset="#vertOffset#"
              alternation="OddPages"
              >
                   <StyledText text-align="center">
                        <p font="#font#" color="#color#" >#left(dCompany,maxlinechars)#</p>
                        <p font="#font#" color="#color#" >#left(dName,maxlinechars)#</p>
                        <p font="#font#" color="#color#" >#left(dPhone,maxlinechars)#</p>
                        <p font="#font#" color="#color#" >#left(dEmail,maxlinechars)#</p>
                   </StyledText>
              </Watermark>
         </PDF>
    </PDF>
    Then using the created pdf from above, i use a slightly modified version of the cfscript code ( that uses iText) you provided me previously to add a logo image just above this text.  The only changes i made to it were resizing of the image and adding where to place it.  Here is that code:
    <cfscript>                    
        fullPathToInputFile = "#tempdestfilepath#";
         writeoutput("<br>fullPathToInputFile=#fullPathToInputFile#");
        fullPathToWatermark = osFile("#request.logofilepath##qord.userlogo_file#",request.os);
         writeoutput("<br>fullPathToWatermark=#fullPathToWatermark#");
        fullPathToOutputFile =  "#destfilepath#";
         writeoutput("<br>fullPathToOutputFile=#fullPathToOutputFile#");
         ppi = 72; // points per inch
         watermark_x =  ceiling(#qord.pdftemplate_logo_x# * ppi);      // from bottom left corder of pdf
         watermark_y =  ceiling(#qord.pdftemplate_logo_y# * ppi);     // from bottom left corder of pdf
         fh = ceiling(0.75 * ppi);
         fw = ceiling(1.75 * ppi);
       if( not fileexists(fullPathToInputFile) )
                  savedErrorMessage = savedErrorMessage & "<li>Input file pdf for logo add does not exist<br>#fullPathToInputFile#</li>";
       else
                 try {
                 // create PdfReader instance to read in source pdf
                 pdfReader = createObject("java", "com.lowagie.text.pdf.PdfReader").init(fullPathToInputFile);
                 totalPages = pdfReader.getNumberOfPages();
                 // create PdfStamper instance to create new watermarked file
                 outStream = createObject("java", "java.io.FileOutputStream").init(fullPathToOutputFile);
                 pdfStamper = createObject("java", "com.lowagie.text.pdf.PdfStamper").init(pdfReader, outStream);
                 // Read in the watermark image
                 img = createObject("java", "com.lowagie.text.Image").getInstance(fullPathToWatermark);
                    w = img.scaledWidth();
                   h = img.scaledHeight();
                   //$is[0] = w
                   //$is[1] = h
                   if( w >= h )
                      orientation = 0;
                  else
                      orientation = 1;
                      fw = max_h;
                      fh = max_w;
                  if ( w > fw || h > fh )
                      if( ( w - fw ) >= ( h - fh ) )
                          iw = fw;
                          ih = ( fw / w ) * h;
                      else
                          ih = fh;
                          iw = ( ih / h ) * w;
                      t = 1;
                  else
                      iw = w;
                      ih = h;
                      t = 2;
                 // adding content to each page
                 i = 0;
                 //while (i LT totalPages) {
                     i = i + 1;
                     content = pdfStamper.getOverContent( javacast("int", i) );
                     img.setAbsolutePosition(javacast("float", watermark_x), javacast("float", watermark_y));
                        if(t==1)
                             img.scaleAbsoluteWidth( javacast("float", iw) );
                             img.scaleAbsoluteHeight( javacast("float", ih) );
                     content.addImage(img);
                     WriteOutput("Watermarked page "& i &"<br>");
                 //WriteOutput("Finished!");
                 catch (java.lang.Exception e) {
                 savedErrorMessage = savedErrorMessage & "<li>#e#</li>";
             // closing PdfStamper will generate the new PDF file
             if (IsDefined("pdfStamper")) {
                 pdfStamper.close();
             if (IsDefined("outStream")) {
                 outStream.close();
    </cfscript>
    The above code resized the image to a certain width/height if needed and adds it to the pdf. 
    I just figured they might be a way to tap into one of the java objects that would allow adding the text.  Ideally, adding the text and image to some sort of 'bounding box' that would allow centering of the image and text in relation to that bounding box.  Or if there is no way to add to a bounding box, a way to get the horizontal length of the longest line of text so i could calculate a common centerline for the image and text.
    I've attached the following pdf to show how the image and text would look together.  This example is not to scale but a similar image and text would be added to a separate pdf.
    Thanks for you help.

  • Inserting user text into .pdf

    I’m creating an interactive presentation using PowerPoint and Adobe Captivate 4 (I may upgrade to version 5 soon, though). I’d like to create “reflection” slides in my presentation where I pose several questions, and users can type their thoughts into a text entry box. Then, I’d like them to have the option of printing those reflections. Ideally, I’d like the user text to be inserted into a formatted .pdf – meaning that I’d create a .pdf with a title, headers, etc., and the user text would be placed in the appropriate spots. Is that possible? If not, any thoughts on a different way to approach it?

    Thanks, for the reply.
    I figured it out. I just open the old session and go to track 1 where the clips are lined up. At least on my system, I left click the "A" tool beyond the end of track 1 and this "activates" the track for recording. Then I move with the V tool to where I want to add some stuff and start dictating, by pusing the main record button.
    When I'm through, I just selected the clips that were overwritten, and drag them to the right and line them up where I want them (I can move them all just by drag selecting them).
    Then I just bounce to new track to create a new mixdown, noise correct it again, and save over the previous file. Actually, pretty easy, once I figured it out, but as far as I can see, no actual instructions.
    John

  • Adobe Professional 6.0 - Entering text into pdf?

    I am trying to complete a form that is only available in pdf
    format. The form has lines where you are supposed to enter your
    information. I am using Adobe Professional 6.0. The "touch up text
    tool" allows me to add the text, but it removes the lines on the
    form. Using the line tool, I am able to underline the text I enter,
    but the line doesn't print out. If I try to printing with the
    "print with comments" option, it prints the line, but it also
    includes a comment with each of the lines. I noticed the later
    versions of Adobe Professional have a "typewriter tool"--this is
    exactly what I need. Is there anything similar to that available
    for the Adobe Professional 6.0. Thanks!

    Thank you for your post. These forums are specific to the
    Acrobat.com website and its set of hosted services, and do
    not cover the
    Acrobat family of desktop products. Please visit the
    following forums
    for any questions related to the Acrobat family of desktop
    products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • Help reqd for printing the word text into two lines(AMOUNT in Rupees)

    Hi all,
    Im working for cheque printing and in the Amount in words column....im getting the text in a single line...as i've made it as in my script.
    (im moving the rate in to amount thru FM "HR_IN_CHG_INR_WRDS"....
    and it displaying into a single line....)
    But in every bank cheque...we have only a limit space for the first line and balance words should come in to the next line....How to achieve this in my form print.(when im giving the cheque(laser print) inside the printer for print)...
    *******FYI..
    now im getting it as
    RUPEES Ninety Seven Thousand Thirty seven and four paise only.(its going out in my cheque as it's coming in a single line,going beyond the words column)
    the above one...i want to print it as two lines as like in normal cheque...
    what condition i've to give and how to split the text or make it to continue in the second line....
    Pls do the needful with any examples or any coding.....
    help needed
    thanks & regards
    sankar

    hi Nehal,
    the below one is my coding part........FYI
    DATA AMT LIKE REGUD-WAERS.
    data: words(120) type c,AMOUNT(120).
    data: ant like PC207-betrg,t like reguh-vblnr,t1 type int4.
    FORM WORDS TABLES intab
    STRUCTURE itcsy outtab
    STRUCTURE itcsy.
    READ TABLE intab INDEX 1.
       t   = intab-value.
    select single RWBTR from reguh into ant where vblnr eq t.
    ant = ant * ( -1 ).
    CALL FUNCTION 'HR_IN_CHG_INR_WRDS'
    EXPORTING
    AMT_IN_NUM               = ant
    IMPORTING
    AMT_IN_WORDS             = words.
    amount = words.
    READ TABLE outtab INDEX 1.
      MOVE WORDS TO outtab-value.
      MODIFY outtab INDEX 1.
    ENDFORM.                    "diff
    with the above code,im getting the amount field in a single line and it goes out beyond the line specified.
    How to split it as a length basis as u said....pls explain in detail...
    thanks & regards
    sankar

  • Inserting text into PDFs in Preview.

    When editing a PDF in preview, I create a text box where I want to put text but i can only have one font or, more importantly, one font style (bold, italics etc) within that text box. How can i make just several words italics??

    Apparently, the only way I have found to mix font styles in Preview is to create two text boxes and manually align them for appearance. You can change font color from the Preview edit sub-toolbar or the font dialog box.
    becomes:

  • Adding text to PDF form Text field

    Hello there,
    i'm trying add text to textfield in PDF programatically using java.
    if text  contain "(" or ")" brakets are not displaying in PDF textfiled,if i convert "(" to "[" then the text is displaying in the pdf textfield.how do I allow "(" inside text.and i'm creating pdf programatically in java.
    thanks in advance

    hi there,
    finally I figer out the problem that was causing,
    PDF use's  escape character "\" in front of "(" in the text.
    so i replace "(" with "\\ (" in the String using java,that fixes my problem.
    thanks 

  • Adding text into Numbers

    Hi
    I have made a spreadsheet for a team of athletes in Numbers 3.5. On one of the sheets I want to have their training program. However, whenever I hit return to start a new line, the cell below is automatically highlighted. I have selected "automatically detect lists" in preferences, but no joy there. Any ideas?
    Thanks

    Hi Wrightie,
    Hold the option key down then press enter to insert a new line in a cell.
    Regards,
    Ian.

  • How to write a unicode text in pdf file

    Dear Friends,
    I am a beginner in acrobat pdf plug-in development. I was trying to write a unicode text (Tamil text) into pdf file.
    Using same api I am able to write english text in time-roman, areal etc fonts. But I am not able to write tamil texts.
    The code is as below:
            memset(&pdeFontAttrs, 0, sizeof(pdeFontAttrs));
            pdeFontAttrs.name = ASAtomFromString("Latha");
            pdeFontAttrs.type = ASAtomFromString("TrueType");
            pdeFont    = PDEFontCreateFromSysFont(                                        \
                            PDFindSysFont(&pdeFontAttrs, sizeof(pdeFontAttrs), 0),    \
                            kPDEFontCreateEmbedded);
            pdeText = PDETextCreate();
            PDETextAdd(pdeText, kPDETextRun, 0, (ASUInt8 *)buffer, _tcslen(buffer),
                                    pdeFont, &gState, sizeof(gState), NULL, 0, &textMatrix, NULL);
            PDEContentAddElem(pdeContent, kPDEAfterLast, (PDEElement)pdeText);
            PDPageSetPDEContent(pdPage, gExtensionID);  
            PDPageReleasePDEContent (pdPage, gExtensionID);
    KIndly assume that PDEGraphicsState and PDETextMatrix are set properly set, I am not pasting entire code to avoid complexity.
    Thank you,
    Safiq

    Dear lrosenth,
    I went through some codes/suggestions in internet and I found that I need to have cmap file and cid font file for the respective font since pdf doesn't support unicode fonts directly.
    Can you help me to know where can I get cmap file and cid font file for tamil language font Latha(TrueType) microsoft font.
    Regards,
    Safiq

Maybe you are looking for

  • ODS to CUBE loading - taking too much time

    Hi Experts, I am loading data from R/3(4.7) to BW (3.5). I am loading with option --> PSA and then Data Target (ODS ). I have a selection criteria in Infopackage while loading from standard Datasource to ODS. It takes me 20 mins to load 300K records.

  • 702W APs out of box not showing on WLC

    We have a 2504 WLC with existing 11 APs which are 3602-I. We want to add 5x more 702w APs. I have installed the license on the 2504 WLC and that was fine. I have added new APs mac to my dhcp server, so they get an IP now and I can telnet/ssh into the

  • Cell Formatting in excel -  Webdynpro ABAP

    Hi, I have Webdynpro ABAP component. In this I am downloading some internal table data into spread sheet using following code. I need to Format data like giving Cell coloring. Could any one please tell me where i can make this format in WebDynpro ABA

  • Output Determination in Invoice

    Hi, I created a Invoice using VF01, but I am not able to see the output. I don't see any values in Output Type. Rather than manually enterting the values for Output Type , Medium....is there a way to automatically populate these values once the Invoi

  • How do you avoid the "Please insert media" message?

    Is there a way to make Encore proceed with the next burn when I put the blank disk in? The "please insert next media" message will not go away on its own. I put the disk in, then I have to wait a half minute or so for the disk to load, then hit 'Ente