Remove print only water mark

Create a pdf and then goto to the document menu and select add water mark. Set the water mark to only show when the document is printed. Add some text for the water mark. Save your document and close it.
Now open it backup and do a print preview. You should see the water mark in the preview. Cancel the print. Look at the document on the screen. You should not see the water mark when viewing on the screen. This all works.
Now how do you remove the watermark? There is no option for removing the print only watermark.

This assumes that you have the ability to edit the document.
Go to Advanced>PDF Optimizer...
Select "Discard Objects" from the left window panel
In the "Discard Objects Settings" select the check box "Discard all comments and form widgets"
Click the OK button
Rename the PDF to something else
Click the Save button.
Cheers!
Rocky

Similar Messages

  • The print driver for HP Laserjet 3380 that was print only was removed from my iMac, and now when try to download driver, it states to contact manufacturer.  I have old driver on Time Machine, can I reinstall that old driver that worked?

    The print driver for HP Laserjet 3380 was for print only, was removed and when I went to download from apple, it stated to contact manufacturer. I have old driver in Time Machine, how do I reinstall from Time Machine that driver that worked?

    Hi,
    Trible post. Please use:
       http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/HP-solution-center/m-p/4790405
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Removing printer marks

    how do you remove printer marks from your PDF
    document?

    ChrisMercianLabels wrote:
    In case it helps find the solution, the issue can be re-created by:
    1) Create a new Illustrator document with 1 artboard (number not important) and add some random shapes to it.
    2) Save the document as a PDF and under the Marks and Bleeds section tick the "All Printer's Marks".
    3) Create a new Illustrator document (again the number of artboards is not important).
    4) Place your previously created PDF in step 2 into your new document.
    5) Embed the PDF.
    Okay, all is normal up to this point.
    6) By either using the Direct Selection Tool and clicking down into the grouped image, delete the printer marks so you are just left with the random shapes created in step 1.
    This is where the discrepancy must creep in. The placed PDF with printer's marks comes in as a "clipping group" contained in a rectangle the size of its original artboard + printer's marks. It's possible the printer's marks themselves bring along some nested clipping paths too. How certain are you that you are deleting everything but the "random shapes created in step 1"? If you are not releasing the clipping path(s) and/or un-grouping anything, it's very possible you're leaving frames which have no stroke and no fill.
    7) Now try centring the artwork to the artboard and depending on which alignment option you choose the artwork will shift to the right or down.
    Do you work with "edges" or "bounding box" visible? When you select the artwork to align, does the bounding box tightly surround the objects, or is it still the size of the original placed PDF?

  • How to print arabic text as water mark in XML Publisher

    Hi All,
    I am working with Arabic reports,which is conversion of RDF Reports to XML Publisher Reports.
    I Developed RTF template,here problem is how  can i use Arabic text as a water mark in template.
    Please provide me suggestions.
    Thanks in advance
    Regards
    Amar

    do you have arabic text in your report ? is it correct ?
    How To Setup XML Publisher To Show Arabic Characters (Doc ID 556995.1)
    so you can try
    ARABIC Font Shows As ?? Question Marks In Postscript Reports (Doc ID 981174.1)
    you can also post SR

  • How to remove unnecessary data and print only the required data in JSP

    Hi all
    The following output is from TCP/IP connection of RFID Reader.
    Connected to: /192.168.0.3
    EVT:DCE DCEVERSION 3.2.0.0
    EVT:DCE READER IM5 RFID Reader Ver 3.29
    EVT:DCE READERINFO Basic Reader Interface Version Q
    EVT:DCE READERINFO FCC 915Mhz
    EVT:DCE READERINFO Copyright (C) 2002-2006 Intermec Technologies Corp.
    EVT:DCE FIXEDATTRIB CHKSUM=OFF
    EVT:DCE FIXEDATTRIB TTY=OFF
    EVT:DCE FIXEDATTRIB ECHO=OFF
    OK>
    EVT:TAG H02000031323334000151E62B 1 1
    EVT:TAG H02000031323334000151B775 1 1
    For my JSP case I have converted above output's program in javabean I want to print only tagID and other values in a table in my JSP page. Could anybody let me know how to ignore the unnecessary data and print only values after EVT:TAG in three columns and rows, besically rows are not fixed because it depends on reader how many tags it detects?
    Thanx
    kvijai

    Hi,
    Try this
    private function doFilter(item:Object):Boolean
         var searchString:String = myTextIp.text.toLowerCase();
         if (item.name.search(searchString) == 0)
         return true;
              else
         return false

  • Pdf stamping (water mark) functionality is not working in sharepoint 2010

    Hi
    I have developed custom handler(.dll) for pdf file stamping functionality using Ihttphandler in VS2010 with help of
    iTextSharp. deployed the hanlder in GAC and referred hanlder in handler section of the web.config file one of the
    Sharepoitin 2010 site. the stamping functionality is working fine when I am using <Mapping Key="pdf" Value="pdf16.gif"
    OpenControl = "Malag.OpenDocuments"/> mapping key for PDFs in DOCICON.XML. after doing all this settings when open any pdf
    from sharepoint site it opens in the browser with stamping (water mark) on each page of pdf file. Now i want open the file
    in Adobe Reader X with check out & check in options. i have changed mapping key for PDFs in DOCICON.XML file to <Mapping
    Key="pdf" Value="pdf16.gif" OpenControl = "PdfFile.OpenDocuments"/>. After changing when click on pdf file in site it opens
    adobe reader X prompting Chewck out & open etc.. option, if i select Open option the PDF file is not opening & showing
    message "There was an error opening this document. File open failed". Please let me know solution how to solve this issue.
    Here is my handler code..
    using System.IO;
    using System.Web;
    using Microsoft.SharePoint;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Configuration;
    using System;
    using Microsoft.SharePoint.Administration;
    namespace WSPPDFStamping
        class WSPPDFStampingHtppHandler:IHttpHandler
            public bool IsReusable
                get
                    return false;
            public void ProcessRequest(HttpContext context)
                        var siteId = SPContext.Current.Site.ID;
                        var sec = new SPSecurity.CodeToRunElevated(delegate()
                                    using (var site = new SPSite(siteId))
                                        using (var web = site.OpenWeb())
                                            SPFile file = SPContext.Current.Web.GetFile(context.Request.Url.ToString());
                                            string RequestedURL = context.Request.Url.ToString();
                                           // string connStringUrl = "";
                                            string connStringUrl = "";;
                                            bool isAdd = true;
                                            byte[] content = file.OpenBinary();
                                            SPUser currentUser = SPContext.Current.Web.CurrentUser;
                                            string siteWebAppRoot = "/" + SPContext.Current.Site.WebApplication.DisplayName;
                                            System.Configuration.Configuration rootWebConfig =
                                    System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(siteWebAppRoot);
                                            System.Configuration.ConnectionStringSettings connString;
                                            if (0 < rootWebConfig.ConnectionStrings.ConnectionStrings.Count)
                                                //connString =
                                                //    rootWebConfig.ConnectionStrings.ConnectionStrings["PDFStampingURL"];
                                                //if (null != connString)
                                                //    connStringUrl = connString.ConnectionString.ToString();
                                                for (int i = 0; i < rootWebConfig.ConnectionStrings.ConnectionStrings.Count; i++)
                                                    string connStr = "PDFStampingURL" + (i + 1);
                                                    connString =
                                                        rootWebConfig.ConnectionStrings.ConnectionStrings[connStr];
                                                    if (null != connString)
                                                        connStringUrl = connString.ConnectionString.ToString();
                                                    if (RequestedURL.Contains(connStringUrl))
                                                        isAdd = true;
                                                        break;
                                                    else
                                                        isAdd = false;
                                            //if (!RequestedURL.Contains(connStringUrl))
                                            if (!isAdd)
                                                context.Response.ContentType = "application/pdf";
                                                context.Response.BinaryWrite(content);
                                               // context.Response.AddHeader("content-disposition", "attachment; filename=" + file.Name);
                                              // context.Response.AddHeader("content-disposition", "inline;filename=" + file.Name);
                                                context.Response.End();
                                                isAdd = false;
                                                return;
                                            string watermark = null;
                                            if (currentUser != null)
                                                watermark = "Document downloaded by " + currentUser.Name + " on " + System.DateTime.Now + " PST.";
                                            if (watermark != null)
                                                PdfReader pdfReader = new PdfReader(content);
                                                using (MemoryStream outputStream = new MemoryStream())
                                                    PdfStamper pdfStamper = new PdfStamper(pdfReader, outputStream);
                                                    BaseFont baseFont = BaseFont.CreateFont(BaseFont.HELVETICA_BOLD, BaseFont.CP1252, false);
                                                    for (int pageIndex = 1; pageIndex <= pdfReader.NumberOfPages; pageIndex++)
                                                        //Rectangle class in iText represent geometric representation...
                                                        //in this case, rectangle object would contain page geometry
                                                      iTextSharp.text.Rectangle pageRectangle = pdfReader.GetPageSizeWithRotation(pageIndex);
                                                        //PdfContentByte object contains graphics and text content of page returned by PdfStamper
                                                        PdfContentByte pdfData = pdfStamper.GetOverContent(pageIndex);
                                                        //create font size for watermark
                                                        pdfData.SetFontAndSize(BaseFont.CreateFont(BaseFont.HELVETICA_BOLD, BaseFont.CP1252, BaseFont.NOT_EMBEDDED), 8);
                                                        //create new graphics state and assign opacity
                                                        PdfGState graphicsState = new PdfGState();
                                                        graphicsState.FillOpacity = 0.7F;//= 0.4F;
                                                        //set graphics state to PdfContentByte
                                                        pdfData.SetGState(graphicsState);
                                                        //indicates start of writing of text
                                                        pdfData.BeginText();
                                                        //show text as per position and rotation
                                                        pdfData.ShowTextAligned(Element.ALIGN_MIDDLE, watermark, pageRectangle.Width / 4, pageRectangle.Height / 44, 0);
                                                        //pdfData.ShowTextAligned(Element.ALIGN_CENTER, "For Internal Use Only", pageRectangle.Width / 2, pageRectangle.Height / 2, 45);
                                                        //call endText to invalid font set
                                                        pdfData.EndText();
                                                        //Top text
                                                        PdfGState graphicsStateTop = new PdfGState();
                                                        graphicsStateTop.FillOpacity = 0.005F;//= 0.4F;
                                                        //set graphics state to PdfContentByte
                                                        pdfData.SetGState(graphicsStateTop);
                                                        pdfData.BeginText();
                                                        //pdfData.ShowTextAlignedKerned(Element.ALIGN_LEFT, "TEXT Left", 150, 628, 0);
                                                        pdfData.ShowTextAligned(Element.ALIGN_CENTER, watermark, pageRectangle.Width / 2, pageRectangle.Height - 13, 0);
                                                        //call endText to invalid font set
                                                        pdfData.EndText();
                                                        //Set 45 degree water mark
                                                        PdfGState graphicsState45 = new PdfGState();
                                                        pdfData.SetFontAndSize(baseFont, 38);
                                                        graphicsState45.FillOpacity = 0.07F;//= 0.4F;
                                                        //set graphics state to PdfContentByte
                                                        pdfData.SetGState(graphicsState45);
                                                        pdfData.BeginText();
                                                        //show text as per position and rotation
                                                        pdfData.ShowTextAligned(Element.ALIGN_CENTER, "Registered For Internal Use Only", pageRectangle.Width / 2, pageRectangle.Height / 2, 45);
                                                        //pdfData.ShowTextAlignedKerned(Element.ALIGN_LEFT, "TEXT Left", 150, 628, 0);
                                                        //call endText to invalid font set
                                                        pdfData.EndText();
                                                    pdfStamper.Close();
                                                    content = outputStream.ToArray();
                                            context.Response.ContentType = "application/pdf";
                                            context.Response.BinaryWrite(content);
                                           // context.Response.AddHeader("content-disposition", "attachment; filename=" + file.Name);
                                         //   context.Response.AddHeader("content-disposition", "inline;filename=" + file.Name);
                                            context.Response.End();
                        SPSecurity.RunWithElevatedPrivileges(sec);
    web.config file of share point site
    <handlers>
        <add name="PDFWatermark" verb="*" path="*.pdf" preCondition="integratedMode"
    type="WSPPDFStamping.WSPPDFStampingHtppHandler, WSPPDFStamping, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=835cc3a26d74a89a" />
        </handlers>
    thanks in advance.
    jampani venkateshwar rao.

    Time to engage in basic debugging. Alter your script to remove all the extra steps and generate logs as it goes along, then gradually re-enable each part so you can work out where it's bombing out. It doesn't sound like a problem with Reader itself, and as Claudio says we're not here to provide support for non-Adobe software.

  • How do I get my printer to print only on one side of the paper?

    I want to print only on one side of the papger.  But machine prints out on both sides.  When I remove the duplexer at back of machine, the paper flies out the back and printing error says no paper.  I'm going nuts.   I am a writer and can only submit material on one side of the paper.   I just got this machine and hate that it has no manual and the manual on line is beyond me.  I need simple easy to understand instructions for my simple brain. thanks

    Hi,
    Follow these steps to disable two sided printing:
    Open the file you would like to print. From the File menu select Print. The Print window appears.
    NOTE: The Print window might be minimized. Click the Show Details button to see all available settings.
    Click the settings drop down, it will usually appear as the name of the program (e.g. TextEdit)
    Will appear as Copies & Pages within Microsoft Office applications.
    Select Layout from the drop-down menu.
    Set the Two-Sided option as Off.
    You may save the settings as a preset by clicking Presets > Save Current Settings as Preset...
    By doing so and completing the print job these settings will remain default till another preset will be used in the future.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Add water mark on Adobe Interactive Form

    Hello,
    We have created a Interactive Form in our Customer that give us the possibility to print pictures dynamically from url.
    I am trying to add a water mark to the final printed form, tried to set in Master Page on the layout from Adobe Live Cycle Designer and also from another superposed gif pictures that have transparent area.
    On the master Page i can't fin how to set the image as a Water Mark and with the gif option, adobe Live cycle designer
    don't admit the possibility to make black image areas as semi transparent.
    have anyone fin this ?
    thanks:
    Luis

    Watermark is NOT possible in Adobe Forms. The only workaround is to add the image and then set the option as Send to backward to have watermark type effect.
    Chintan

  • How to add watermark (print only) for  a indd file in java ?

    Hi EveryOne ,
    I have a few indd files in the database .
    I want to write  a java class , that puts a water mark (print only) on a few indd files based on some parameters.
    I  have the binary , which after modification will have to be saved back to the DB as indd.
    Can anyone suggest a way how this can be done.
    Thanks in advance.
    Harish -

    HarishDv wrote:
    I dont have indesign  installed on my system. I only have the binary , which needs modification and i have to save back to the DB as indd.
    Can't be done, for a realistic assessment of "can". InDesigns documents cannot reliably be created or modified without InDesign itself. (*)
    If you need to do this on native InDesign documents, you have to buy and install it.
    * "Not true, there is always IDML". But that's not a 'binary'; and you cannot (**) "convert" a binary INDD to IDML and back again without InDesign.
    ** Again, for a remotely realistic value of "can".

  • HP Officejet Pro 8500 Premier prints only in black/MAC USER & won't align?

    PROBLEM # 1) I've replaced all my ink cartridges, but can't find out why my printer is now only printing in black? I'm a MAC user, so I want to print in color, and am trying to find instructions for a MAC on how to get back to printing in color?
    ACTION TAKEN #1
    UPDATE: I've done a three level cleaning of the printer heads, which DOES print in color and each color block now looks great.  The printer heads were not printing any color blocks, but the pink color block,  until the first third level cleaning. I then cleaned the printer heads a second time all the way through the third level.
    RESULT: However when I print from any document/web page my printer only still prints in black & white after these two printer adjustments double three stage printer cartridge claening?
     ACTION TAKEN #2
    I found this very detailed report and video on cleaning printer heads, alignment issues, and calibrate line feeds;
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01624398&lc=en&product=3964986&tmp...
    The Print Quality Diagnostics Page looks perfect (including the alignment section)  in all 3 test patterns, and again prints in color. 
    RESULT: However, my printer still will not print in color after trying all these steps?
    IPROBLEM #2)I  've also tried a align printer which also prints in color,  but states, "alignment failed see documentation manual"? To make the situation more complicated the alignment page looks perfect  and prints in color before the error message displays. 
    After puling the power cord  twice while ON  and wiating 20 seconds, as discussed in the above link. my printer "won't remove the, "align  error message see diagnostics manual".
    RESULT: Printer "won't remove the, "align  error message see diagnostics manual", even though the Printer Diagnostic Pages looks great, and the alignment page as well.
    I'm operating a lastest version Macbook Air laptop OS X 10.9.4. I have not upgraded to a new operating system since this problem started a week ago, and Ive owned this HP Printer for 2 years. 
    UPDATE: ISSUE SOLVED. Well you can imagine when I say that I spent about 2 hours on this yesterday that yea he's right. This took a long time to research and try all these solutions. I told my wife about the issue and had her try:
    ACTION TAKEN #3: Print a page from a second computer. Windows laptop printed a colored page from a web site.  
    SOLUTION: (Printing only in Black Color): Wife literally solved the problem in 3 minutes! 
    Look below at the presets drop-down arrow tab, which is right below the printer name: You will see PLAIN PAPER, FAST DRAFT, BLACK AN(D WHITE). I'm not sure how I checked this, but this is how you can print only in black ink. NOTE: I looked at dozens of answers across the web, and didn't find this info anywhere else!
    This screen shot show you what the setting should be if you want to print in fast draft mode to use the least amount of color ink. 

    Hi monkplayer,
    It looks like your problem is solved? There wasn't a problem with the printer itself, just the printer settings on your Mac?
    This is good information though. We don't always have detailed solutions for customers that are using Safari, since it is hard to write instructions for the general public with specific steps for each operating system.
    Best of luck,
    Mary
    {I work on HP's behalf}

  • How to remove Print pdf link below the reports?

    How to remove print pdf(only pdf. i need html) report which is available below the reports? I am not asking to remove it from the print icon at the left bottom of the page. I need it to be deleted from the link in the middle of the page below the report.

    Go to
    C:\OracleBI\web\msgdb\messages\controlmessages.xml
    Then
    Remove The below Tag From the control messages.xml
    <sawm:if name="enablePDF"><a class="NQWMenuItem" name="pdf" href="javascript:void(null)" onclick="return PortalPrint(&#39;@{pdfURL}[javaScriptString]&#39;,@{bNewWindow});"><sawm:messageRef name="kmsgDashboardPrintPDF"/></a></sawm:if>
    After that Restart the server.
    You will not find the pdf link
    Edited by: 848525 on Apr 21, 2011 4:17 AM

  • How can I print only Selected pages from a Multipage document?

    HP Envy 114 e-All-in One Printer
    How can I print only pages 2 and 4 from a 10 page document using my Envy 114 Printer?
    This question was solved.
    View Solution.

    Hi,
    Where do you print from ? Under Word or PDF you can select page(s) you want to print.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Printing only in red

    my printer hp 3520 printing only in red colour, i have changed all the inks cartridges, it's a new one what sould i do?????

    Before you try anything, try rebooting the printer. 
    1) Turn it off
    2) Physically unplug it from the wall/power strip.
    3) Hold down the power button for at least 10 seconds (use your watch)  [certain control circuits are energized even with "power off" - this drains them.  [Also works for desktops & laptops --  laptops remove the battery as well as unplugging the charger)
    4) plug it back in and power on.
    Now, try printing a test page from the printer's control panel (work thru setup / print reports, etc.).
    If that page is all red (or not perfectly normal for a new printer) it is probably a printer problem.  If it is OK - could be a settings problem on your computer's printer page.
    Make something idiot-proof, and someone will build a better idiot (Anon - quoted by J. D. Falk)

  • HELP- "IPOD Cant Be Synced.  The Disk is locked"  Cant remove Read only

    I cannot remove read only from the IPod Control folder. It won't let me. I cant load music to my ipod, which I previously have with same computer, itunes, everything. I have the most updated itunes, software, etc.
    Can anyone help me? I have no clue what to do. I tried to right click on the ipod disk and run an error check. that didnt work. I'm clueless. Help!

    Hello Mark,
    And welcome to Apple Discussions!
    I don't really have any suggestions for you, but I can point you to an older thread where you might find help. Check out this old post from another forum member who managed to address this issue him/herself.
    http://discussions.apple.com/thread.jspa?threadID=1651418
    B-rock

  • My HP LaserJet 1018 has started printing only blank pages.

    My HP LaserJet 1018 has started printing only blank pages. 
    Help?
    Using Windows XP (Home Version)
    Product # CB419A

    Could be a number of issues.  First could be a bad or not connecting transfer rollers which moves the toner from the drum to the paper.  Only way to test is a half test by putting paper on the manual tray and printing a self test.  When the back edge enters the printer, open the toner door to stop printing.  Remove the toner and flip back the cover over the toner drum to see if there is any image on the drum.  If image is present then it could be transfer roller issues.  Use the service manual and look under engine diagnostics in the index and it will direct you to a page that shows how to perform an engine test.  Do the test to see if you get a sheet of paper with lines on it.  If you get lines, then the issue could be the formatter.  If no lines and the shutter has been removed then I would think you are having high voltage issues.  You may have to bring the printer in for service.

Maybe you are looking for

  • 3.1 problems? - All of the above

    3.1 problems, yeah, I got em. I updated my phone to 3.1 and left my wife's at the previous version. Both phones are identical with basically the same apps on both. My phone was a brand new one from a service call 2 weeks ago that I got at the not so

  • What is the Proper Way to place a Background Image inside a Div?

    I have been searching Google and the Adobe forums for awhile now, and while there are very valid solutions to similar problems I found that none of them fixed the problem that I am facing. I blame myself and getting lost in this sloppy coding of mine

  • [Solved] error: C compiler cannot create executables; see 'config.log'

    Trying to build avant-window-navigator from the aur using yaourt results in this error message.  I recently upgraded my system and suspect this may be the cause, but I'm not sure how to proceed from here.  My config.log follows. This file contains an

  • Editor linking to external hard discs

    I am just starting to use PSE for the first time. I have put a lot of my photos (which are stored on two external HD's) in the catalogue and put tags on them. First time on exit and re-entering the photo's were still there as before. External HD's we

  • Audigy 4 and vista 5

    Hey, I have started using vista 5472, I have installed my sound card drivers but even though it says that my sound card is installed it says that it isnt connected, does anyone know how I can fix this?