Export PSD to PDF and retain text

I know that you can export a PSD to PDF by printing the document with something like NovaPDF, however, doing so will result in a PDF that has no text - it appears the text has been rasterized and the PDF document is just a series of images. Is there a way to export a PSD to a PDF and retain the text blocks?  This would be very helpful in that the PDF can be indexed, or so that the Find feature works on the document in Adobe Reader.
Thanks!

Don't worry. On some versions, it's not that easy to spot. Most Save_As will have Photoshop PSD at the top, then drop down alphabetically, so that Photoshop PDF is amongst the "P's." Sometimes I have to squint to see it and have paniced, when I could not initially find it tucked away.
Good luck,
Hunt

Similar Messages

  • I am converting a .docx file to a pdf and the text is coming out blurry

    I am trying to convert a .docx file to a pdf and the text keeps coming out blurry. Some sentences seem to be bolded in the pdf as well. All the colored text seems like there's a shadow behind it and all the text in bold seems extra blurry. I am saving the file as a pdf. I tried to print the file as a pdf but it kept crashing. I have adobe acrobat pro and distiller, but I'm not savy about which program does what.
    Thanks for any help!

    If you are trying to convert a Word file, ensure the text is in 100% black only.
    To create PDF's there are hundreds of different combinations that can be used, but only a few will give you a good 'print ready' file, which is what I think you may be after.
    You may have font issues that are stopping the text looking sharp.
    If you have Distiller, you can try to print as .ps (save as postscript), load distiller up and choose one of the high quality settings in the pop down menu.
    If you are working on a Mac you can drag and drop the .ps file direcetly on the dock icon for distiller, or if you are running Windows you will need to navigate to the file via the menu bar (you will need to know where you have saved your .ps file).
    There may be other issues with the original file format that is causing problems with your PDF creation.
    Let me know how you get on.
    Cheers

  • How do I convert a powerpoint document to a pdf and retain the notes?

    How do I convert a powerpoint document to a pdf and retain the notes?

    One possibility is to print the slides+notes, choosing "save as PDF" in the print dialog instead of sending it to a printer.

  • How send e-mail with XML + PDF and body text

    Hi everyone,
    I have a new requirement but I´m with doubts, how to send an e-mail with two attachements (XML and PDF) and body text using -
    MIME: multipart/mixed;boundary
    I already have code to send XML + body text as you can see below:
    Element contentType = docout.createElement("Content_Type");
      root.appendChild(contentType);
      Text contentTypeText = docout.createTextNode("multipart/mixed;boundary=--AaZz");
      absTraceLog.addDebugMessage("Content_Type e-mail --- "+contentTypeText.toString());
      contentType.appendChild(contentTypeText)
    String text = "----AaZz\r\nContent-Type: text/plain; charset=UTF-8\r\n" +
            "Content-Disposition: inline\r\n\r\n" + nfeText +
            "\r\n----AaZz\r\nContent-Disposition: attachment; filename="+ prefixo +" "+ chaveNFe +".xml" +"\r\n\r\n" + xmlString + "\r\n";
    Element content = docout.createElement("Content");
    root.appendChild(content);
    contentText = docout.createTextNode(text);
    Content.appendChild(contentText);
    The code above work good, but I can´t duplicate any field from XiMail 3.0 - because it´s 0:1.
    So how to do that ?
    Thanks.
    Regards,
    BR.
    Viana.

    Eng,
    That´s works good with mailPackage:
                content= "--" + "--Zz" + CRLF
                        + "Content-Type: text/html; charset=UTF-8" + CRLF
                        + "Content-Disposition: inline" + CRLF + CRLF
                        + textBodyMail + CRLF
                        + "--" + "--Zz" + CRLF
                        + "Content-Type: application/xml; name=" + attachmentName + CRLF
                        + "Content-Disposition: attachment; filename=" + attachmentName + CRLF
                        + "Content-Transfer-Encoding: base64" + CRLF + CRLF
                        + encoder.encode(inputString.getBytes("UTF-8")) + CRLF
                        + "--" + "--Zz" + CRLF
                        + "Content-Type: application/pdf; name=" + pdfName + CRLF
                        + "Content-Disposition: attachment; filename=" + pdfName + CRLF
                        + "Content-Transfer-Encoding: base64" + CRLF + CRLF
                        + encoder.encodeBuffer(new BASE64Decoder().decodeBuffer(pdfAttachment));
    Regards,
    BR.
    Ricardo Viana.

  • Add layers from other psd file and retain text layers (Batch processing)

    I want to batch process a large number of portraits adding text info from the filename (year_name_number.jpg) to existing text layers. I want to make a template psd file containg the correct labeled text layers formatted and adjusted (With bleding effects and more) How can i add layers from an other psd file to the active document and retaining the text layers editable. The place command in PS5 adds the file as a smart object, no use.
    Any ideas?
    I tried the combined action/script way, but no joy so far. Right now i am making the text layers with a action, then calling the script from the action. It works but its difficult to make different templates from adjusting a action.
    The code i am using now (in combination with a action creating the 3 text layers and other grapchical elements)
    var docRef = activeDocument;
    // strip the extension off
    var fileNameNoExtension = docRef.name;
    fileNameNoExtension = fileNameNoExtension.split( "_" );
    if ( fileNameNoExtension.length > 1 ) {
                    fileNameNoExtension.length--;
    fileNameNoExtension = fileNameNoExtension.join("_");
    var myString = fileNameNoExtension;
    var mySplitResult = myString.split("_");
    var textLayer = docReflayers['Year']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T1 = textLayer.textItem;
    T1.contents = mySplitResult[0]
    var textLayer = docRef.layers['Name']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T2 = textLayer.textItem;
    T2.contents = mySplitResult[1]
    var textLayer = docRef.layers['Number']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T3 = textLayer.textItem;
    T3.contents = mySplitResult[2]
    Thanks
    Eivind

    norway_photo wrote:
    Here is my intended workflow:
    - A set of same size portraits labeled "year_name_number.jpg"
    - A template.psd os same size with graphical elements and text layers (named "year", "name" and "number")
    - A script or action copy/pasting og adding all layers from the template.psd file to the open portrait file, retaining text layers editable.
    - A script (The one i have working) changing the text layers added from the template to text from the filename.
    - A action saving this as a PDF ready for print.
    This way i can process a large number of portraits, add names and other information and save it as a file ready for print.
    I can image it is much easier to edit a template than writing a script or an action creating all the graphical elements.
    And even better, to change this template for different customers/departments/logos.
    Basically i need a way to add layers to an open file using a batch file or script.
    Eivind
    OK I understand what your trying to do and now I do not agree with your conclusion you made in you first append about place being no good for you.  Its is I think a perfect solution for you. I feel you need to address the process from a new angle.
    I am very familiar with templates I use them all the time for collages which I populate with an actions.  However I do not batch this process and my process is interactive.  If you look at what your trying to do from the angle of creating a collage.  You will see what you are trying to do is automate the population of a single image collage using a single template in a batch process.  An example of one of my single image collage populated by one of my actions that has been saved as a jpeg image file.  My actions are played in Photoshop with no document opened.  After my action is play there is a single collage document in Photoshop that contains layers that can be tweaked all text is in text layers the can be edited.
    If I wanted to automate the batch population of a single collage template I think all I would need to know is three thing.
    1.) The location of the input images
    2.) The full Path of the PSD template file.
    3.) The location to store the output  file
    Looking at some of the recent threads in this forum I could almost cut and past the script you want to put  together.  There was a recent thread that had javascript code to process files in a folder and process only a list of file types.   There also was a thread that had a place function in it to place images into the current document or create a new document to place the image into.  The image was read from the web using a URL.  This thread has code to change a text layer.  At first I though you may need to open these image file to get at its meta-data to get the Portrait image Exif creation data.  But see all you need is the Filename for it has the data you want the year and name.  So the function that get the image files from the folder will give you that. The   Script needs to Open the Template PSD file and retrieve the prototype text layers text content  then the scrip needs a loop that get the next image file to be processed from the folder get filename function. In the loop the image files are place into the open template above a place holder layer like the Background layer. Then using the prototype text contents and the filename are used  create the new content for the text layer and then change the text layers content to it.  Follow that up with a save as for the output file.  Once the output file is saved delete the placed smart object layer.  When this loop ends the script will close the document with no save and end. As for the three inputs you need  the script could either have a dialog like the images processor or simply prompt you for the folders and template file.

  • Exporting report as PDF and CSV formats same time with out executing DB query twice

    Post Author: cpriyanka
    CA Forum: Exporting
    I am using Crystal Report 9.0 version and Java.
    I am getting "PrintOutputController" from "ReportClientDocument"
    And then by calling export(ReportExportFormat.PDF) generating PDF format report.
    Now I need to generate both PDF and CSV format files same time. How can it be done?
    My understanding is when we call "export" it does the DB query execution and other functionality.
    In that case, if I call "export" two times with two different formats, then DB query will be executed twice and that takes lot of time.
    To avoid, is there a way I can all some API so DB query executed once, but I can export report in to multiple formats?
    I appreciate your help.
    Thanks.

    Post Author: cjmorris1201
    CA Forum: Exporting
    Hello,
    Are you using the "pull" or "push" method for your crystal reports?  If you are using the "pull" method (the report itself executes the sql) then I believe there is no way around having the query execute twice since it is fired off each time you open and export the report.
    If you use the "push" method, however, then you can just create the recordset/dataset and then set the datasouce once for the report.
    Here's a broad overview of push and pull though the Crystal Report Viewer is used.  The viewer may or may not be applicable in your case:
    http://aspalliance.com/265_Crystal_Report_for_Visual_Studio_NET#Page5
    Regards, Carl

  • Export word to pdf and maintain font color inside tables

    Hello,
    I'm strugling with producing a PDF from Word document and keep the red colored text inside excel tables that are on the Word document.
    From excel I copy the tables to Word 2007, with "Paste special --> Paste link as Microsoft Office Excel 2003 worksheet object".
    In Word all the colors and objects are fine. The problem happens when I try to produce a PDF from that. The red and blue text inside the tables appears with black color on the PDF.
    This happens always. With MsOffice Save as PDF, with Acrobat 9 save as Adobe PDF, print Adobe PDF and with free PDF Creator.
    I've attached the *.doc and *.xls where this problem is occuring.
    http://www.4shared.com/zip/XmKvKJYH/Wireless.html
    If anyone knows the cause of this problem please let me know.
    Thanks

    Solution found. For the pdf printers to work correctly it is necessary to adjust the format when copying from excel. That option needs to be enabled in advanced:

  • Rendering PDF with Windows.Data.Pdf and allowing text selection

    Hi there,
    I need to render a PDF and allow the user to select text on the PDF.
    As I see, Windows.Data.Pdf does not support more than returning an image.
    Even so, how can I achieve my goal? The Windows 8 app "Reader" has this capability but I don't understand how it works.
    BTW: I have tested other renderers but they have rendering issues with some complex PDF content (complex: RTL).
    Thanks,
    Lidan

    Hi Lidan,
    Unfortunately, the built-in PDF feature has not provided select text on the PDF. You can send your request on UserVoice to ask public that API.
    https://wpdev.uservoice.com/forums/110705-dev-platform.
    Looking for a work around, you can use your favor search engine to look some third party library.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to export an InDesign PDF and get a hyperlink (but keep original formatting)?

    Hey guys - I apologize in advance because I am not particularly technology-inclined, so this question may or may not be very stupid.
    We are a small business and recently purchased InDesign CS6 as it is the only InDesign that will operate on our Mac system. I have made a small (about 30pp.) catalogue complete with text and images, that we wanted to export and turn into a hyperlink that our colleagues could click on (without having to download anything to their computer) and look at. I made the entire catalogue, and am able to export it to a PDF (yay!) but I'm not entirely sure how to get a hyperlink for it. I have clicked "Include Hyperlink" at the bottom when exporting it as a PDF (Print) as an Adobe representative told me to do, but when I open the PDF file from my desktop I see no hyperlink in the properties, etc. When I tried to export it as an HTML, the formatting and images were completely messed up (though it did open in a browser, as I wanted).
    Any help with this would be appreciated - I've been placed on hold for so long with Indesign that I can't take the background music anymore!
    M

    You have to set your link as hyperlink. Open the Hyperlinks panel (Windows/Interactive/Hyperlinks), select the object and click on create new hyperlink in the bottom of the Hyperlinks panel, input the url. Export as PDF with hyperlink checkbox checked. It should works.
    Phong

  • Exporting file to pdf and screen view file dark, print file ok

    I am using Mac Pages as a document editor and basic design tool. Exported pdf files look great on screen on first view, and when opened in Mac preview or even when viewed on the PC as a preview of the file. As soon as the file is opened with Adobe Reader on both pc and mac, I have an issue with the text blocks being changed to dark and unreadable. The file prints fine, but screen view is not readable. I am using the files as a linked file to be viewed on screen and need the .pdf file to be readable on screen with Adobe Reader as designed, without color and text changes.

    I am looking at the original file and I see that one of the blocks is a white background text block with black text and the other is a dark background with white text. There is a 3rd text block that is a purple color with white text and the 3rd is fine, the other white and dark background and text turn dark and unreadable. Preview still shows the file OK, but not with Reader.

  • How to export report to excel and to text file in previewer

    How to export report to excel?
    And, it takes long time for generate report to rtf or pdf file in previewer.
    How to speed up the process? or, it's better generate report to text file directly by Run_product?
    Please help!

    You can generate report to tab delimite format that can be imported to excel.
    As for the performance question, because reports can't specify what format when you run against previewer, so I don't know what previewer you are talking about. Generate to file is always faster than to your application previewer (assume) because you have one more step after output generated in the file: read from file and render it. Depends on the render and size of the output, it may have significant performance difference.
    Thanks,
    -Shaun

  • Open pdf and the text is in written in wrong font

    hi
    i have a problem with my illustrator.
    i created a pdf file a long time ago. the text is written in times new roman regular.
    now when i open the pdf in illustrator it shows a wrong font. i think the wrong font could be new times romance or something)
    but if mark the text and change the font from regular in bold, it shows the right font (times new roman bold).
    how can i change back the text in times new roman regular?
    im using cs4 on win7. already checked the fonts in systemfolder
    thanks a lot
    thanks

    i deleted and nothing happened.
    edit: i checked the the font with an fontanalyzer. it seems that the font was not new times romance. i deleted the analyzed font and now illustrator showe me the right font.
    thanks

  • Having Problems Converting Word Doc to PDF and Retaining Links

    My company recently upgraded company wide to Reader 9 (for Windows). My department develops documentation and we currently use Acrobat Professional 8. Recently we have had several issues where we try to convert a Word 2003 or PowerPoint 2003 doc to PDF with Acrobat Prof 8 and the converted PDF does not retain links when our users open it. The most they get is a information bubble when tehy hover over it that shows the link URL or indocument location, they are unable to seledct the link. Is this a compatability issue between Reader 9 and Acrobat 8 Prof? I have tried everything i know to resolve the issue. Could someone, please offer any helpful info they can? Thanks!

    I withdraw the question. The documents we were given were in Mark Up mode on the Word 2003 side of things. We turned it off and it seems to be working fine now.

  • Exporting images in PDF and broadcasting with custom template error in BI 7

    Hello! We're in the process of creating broadcast reports and are running into some problems. We need someone with experience exporting PDF's or creating broadcasts using custom web templates in 7.0.
    Our issue is two-pronged:
    1) We want users to be able to export (with WAD command) web reports to PDF with the company logo. We have a custom web template with just a JPG image and analysis grid. But for some reason, when this template gets exported to PDF, the image does not get included. We've tried embedding the image into table, group, container, container-layout to no avail. Any suggestions?
    2) We also need the company logo in PDF broadcast reports. We replaced the standard broadcasting web template 0BROADCATING_TEMPLATE (using RSCUST27) with a custom one, but we immediately get the "error loading template ..." when trying to access the Broadcaster. There seem to be no OSS notes for this. 
    Please let me know if you need any additional information.
    Thank you!!

    1) We want users to be able to export (with WAD command) web reports to PDF with the company logo. We have a custom web template with just a JPG image and analysis grid. But for some reason, when this template gets exported to PDF, the image does not get included. We've tried embedding the image into table, group, container, container-layout to no avail. Any suggestions?
    which std template are you replacing with this custom template?
    Broadcasting
    Query Precalculation
    Report Precalculat.
    Enterpr. Report
    Ad Hoc Analysis
    I mean which template does online link default to when it is clicked.

  • Need Help...exporting to interactive pdf and it insists on creating a form...

    I can't figure out why when i export my interactive document to pdf, acrobat insists on thinking it is a form. It's not a form. The document consists of various buttons that are stickly for navigation within this long document and for pop-ups.
    any help would be greatly appreciated. I am working in InDesign CS5.5 and AdobeX. thank you

    The Acrobat team considers it as a feature. It can be turned off in Forms preferences in Acrobat (but you can't set it for someone who may be receiving the PDF file, unfortunately).

Maybe you are looking for