PDFs not importing in at 100%

I am using CS5 and when I open previous files ie CS4 and I'm opening the file in Cs5 which contains PDF when I tell it to Link to the pdfs, the pdfs are importing at a reduced percentage not at 100%. Is this a problem in CS5
thanks
Hilary

I think the problem lies within the original placement of the pdf's,
you should first check wether the original placed pdf, is placed using Art, Crop, Trim, Bleed or Bounding Box.
When you are sure which Box is used, for instance, Trim Box.
Then you have to select "Show Import Options" (or hold down Shift-key) at the Replace or Import dialoge screen and select the same box and then import or relink.
When your original pdf was imported using the Trim Box at 100% and you replace that pdf using the Bleed Box, the new pdf will be larger, so it will be shrinked to fit the current frame.
I hope this explanation is a bit clear, it's easy in my head, but difficult to write down

Similar Messages

  • Dynamic XML PDF not importing fields

    I have a PDF developed in Livecycle and saved as a dynamic XML.
    My database is MS Access and from this I've exported a query saved as an XML file, a XSD schema and an XSL stylesheet. (files attached)
    I'm trying to populate the PDF from the above mentioned files client-side. I have the fields set up to display in a table with repeating rows.
    It seems that I've set everything up okay and I get no error generated in the log file when I preview the PDF in Livecycle, but, the fields are not
    being generated.
    I suspect maybe this is because I don't have the nested forms set up properly for a flowed subform. But I should get at least the first row generated
    shouldn't I, if it is reading the nodes in the XML?
    Attached is (a mock-up) of the PDF along with the XML, XSD and XLS. This form should flow to other pages when dynamically built and I'm hoping to
    display the header on each page (the header will be on the Master Page -- it will contain site links, etc.)
    I hope to not only import data to a PDF this way but also to export fields from the PDF in the same way for database edits...
    Can anyone tell me what I'm doing wrong in the attached?
    And, on another note... do all of the above need to be in the same folder together on the server or can I put the PDF in one folder and the XML, XSD
    and XLS a different folder? (Or the PDF and XLS in the same folder and XML and XSD files in a different folder, etc.)...
    Thanks for any reponses on this.
    - ed
    PS: Below is the XSD schema code (since I can only upload the 3 other files here)
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:od="urn:schemas-microsoft-com:officedata">
    <xsd:element name="dataroot">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element ref="WMS_x0020_BMI_x0020_Percentile_x0020_ZScore" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="generated" type="xsd:dateTime"/>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="WMS_x0020_BMI_x0020_Percentile_x0020_ZScore">
    <xsd:annotation>
    <xsd:appinfo/>
    </xsd:annotation>
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="LastName" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Firstname" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="PreHeight" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="PreWeight" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="PreBMI" minOccurs="0" od:jetType="double" od:sqlSType="float" type="xsd:double"/>
    <xsd:element name="PreBMIPercentile" minOccurs="0" od:jetType="double" od:sqlSType="float" type="xsd:double"/>
    <xsd:element name="PreZScore" minOccurs="0" od:jetType="double" od:sqlSType="float" type="xsd:double"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>

    Sorry for the delay in replying to this post. I got stuck at a friend's from the weekend snow we had... and am finally back on my own computer.
    Just before leaving Friday I found the problem with the form not displaying data fields read from the XML.
    It's a bit embarrassing to admit but, per Steve's instruction here to change the form preview properties (file/form properties) (thanks, Steve!) - I changed the preview from 'print one-sided' to 'interactive' and noticed that I had not set up the link to the XML under 'Data File'. Duh! So, it is reading the data from the XML now.
    However... For the form to display, I had to (under 'connection properties) take the XSLT file off. Under 'Connection Properties' the form is set up as XML Schema with the link to the XSD set up.
    The problem now is that a few of the dynamic fields are numbers. These number fields in the database only have two digits to the right of the decimal point (as in 93.79) but when the form loads these fields in the table in preview mode these fields contain 8 digits to the right of the decimal point (as in 93.79362082). I don't know why this is except that maybe it is because it's no longer reading from the XSLT file. All I want it to do is read the field exactly as it is in the database...
    The table on the form doesn't display as it should either. The table expands with the rows its presenting but this runs to the very bottom of the page and doesn't flow to the next page. I've tried changing the size of the 'root' form on the Master page as well as the size of the 'parent' subform of the table subform but the table still runs to the bottom of the page... I'll keep playing around with this until I fix it unless someone can point me in the right direction...
    Thanks for any leads on this...
    (new corrected file attached)
    Graham, this stuff really is interesting! These handful of files working together to build a dynamic PDF, reading the database XSD schema, an XML file and the XSL file as well as throwing in some Javascript functions is really cool... I'm also (hopefully) planning to have Cold Fusion query the database, depending on the login person's admin privilages, parse the fields from the database and build the XML file from this data 'on the fly' at login... Quite a lot going on in the background here to build the PDF! (I wish I could answer your question about the stylesheet but, obviously from the above, I'm a novice at this - I'm new at this and trying to grope my way around this stuff in the dark. These forums have been helpful as well as googling questions, but, there is still a learning curve here. I'm pretty rough with Javascript as well and that's a big feature of this stuff...)
    Thanks to anyone for direction on getting this file to display properly and the number fields to show the same as in database...
    - ed

  • PDF not imported correctly

    Hi,
    I have a pdf which I want to make interactive.
    I import it an choose second option, which "Creates an interactive form with a flowable layout". What happens however, is that the imported pdf is rasterized as one big image.
    I get the following warning in the log:
    "A logo is detected in the region '{left=30pt, top=14pt, right=603pt, bottom=832pt}'. Contents of the region are rasterized into an image."
    I have previously imported several other pdf files with no issues. What could cause the above? An unsupported image in the pdf? I'm totally lost here.
    Thanks
    /Lars

    Can you send the PDF to [email protected] and I will have a look.

  • IBooks- pdfs not importing from Mail

    So when I open a pdf in Mail on my iPhone 3GS I gather I'm meant to get an "Open in iBooks" button in the top right corner of my screen? I don't haz it. And when i open a pdf in Mail it downloads and gives me the front page but won't actually show any more than that.
    Should i delete iBooks and reinstall it? Has anyone else had this?

    i finally got it to work. i went through all my apps and tried to think of anything that could interfere, including iBooks, and removed them using iTunes. I then hard reset my phone and checked to see if i could at least view them as i used to (iBooks) and i was. i then put iBooks back on my phone, checked a PDF in mail and was able to quicklook it or open in iBooks. i was able to then add the other apps back with out losing the functionality.
    apps i removed to get it working:
    Stanza
    AirSharing
    EasyTask
    Bump
    Photoshop Mobile
    hope this helps

  • PDF's not importing correctly

    I am using CS5 on iMac 27" quad.
    I am trying to import a PDF into Photoshop.
    But it is not importing correctly.
    The PDF is a label template, which prints perfectly from the PDF.
    But when I import it into Photoshop, the dimensions change.
    So the text boxes for the labels don't align up correctly to the label sheet.
    The top label is OK, but the boxes keep moving to the right, so that top label in column 5 is a 1/4" off to the right. The labels seem to be "traveling."
    Vertically, the same thing is happening.
    Row #1 is OK
    but by the end of the page, Row #5 is 3/8" off the page.
    I have disabled all printing options: no auto-center; no fit to page; no scaling.
    The printer software should not be adapting the document at all.

    Here are two articles to start with...don't know what you've tried so far
    iTunes Does Not Recognize Audio CDs
    You Can Not Import Or Play Music From an Audio CD in iTunes

  • Solid color text boxes in MS Word are not importing to pdf

    Solid color text boxes in MS Word are not importing to pdf ... text boxes with pics import and convert fine. Using Word 2013. Any ideas?
    I'm brand new to the forums, so sorry if I'm not asking correctly or asking something already covered.

    Hi Sara!
    Thanks for the response.
    I'm uploading a Word file to my Adobe PDF Packet Annual subscription. I'm running Windows 8.0. Normally I will create a document in MS Word 2013, save it into our dropbox and then when I need to send it to someone (printer in this case) I will log onto Adobe PDF and upload the file to convert. Once it's converted, I'll send the pdf to the client or printer. In this case I created a poster with our logo (in a text box), text, a star (in a text box) and a few solid colored rectangles. Everything converted beautifully - as usual - except the solid text boxes.
    I've used Adobe PDF Packet for a few years and have never seen this. Any ideas or other questions?
    thanks, Dave

  • I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics

    I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics with "Alternative Text".
    I know that with a Microsoft product graphics can be tagged before a PDF is made. I need to know how to do this with my programming.

    The Acrobat SDK might be a starting point.
    From there, perhaps a plug-in (built with C+).
    Perhaps with a licensed release of a PDF Library (this could be $$).
    The viable and cost effective alternative is use the tried and true.
    Authoring in an appropriate authoring application with appropriate tag management.
    Example:  Adobe InDesign; Adobe FrameMaker or MS Word with PDFMaker (comes with install of Acrobat).
    This way you place "Alternative Text" when mastering content in the authoring file.
    Going the route and with some look-see (research) you may find programmatic approaches to placing the alt txt in the authoring file.
    Note: as discussed in the Matterhorn Protocols there is no programmatic method that provides a fully accessible PDF (specifically, that is an ISO 14289-1, PDF/UA-1 compliant PDF).
    Regardless, here you have a sub-forum for discussions on Acrobat usage.
    Consequently discussions on/of 3rd party software is rather out of scope eh.
    Be well...

  • Why will IPhoto not import a PDF image now - it has previously?

    Why will iphoto not import a PDF image now - it has previously?

    This feature was removed with iPhoto 11. You'll need to ask Apple why:
    iPhoto menu -> Provide iPhoto Feedback
    In the meantime you can convert a pdf to jpeg or tiff using Preview.
    Regards
    TD

  • DataMerge to a pdf not in memory InDesign(cc2014) JavaScript

    I am having an issue with the file merging in ram not to a pdf document.
    When I am merging 20 thousand records having it merge in ram not only takes for ever it some times runs out of ram.
    any ideas? This is my Current code.
                  var jobNumber = prompt("what is your job number");
                 // Setting the Folder to get the indesign and the Data File file from.
                var myTemplateFolder = Folder("~/Documents/hotfolder/template/");
                var myDataFolder = Folder ("~/Documents/hotfolder/data/");
                // Retrieving the Indesign FIle
                var myTemplates = myTemplateFolder.getFiles("*.indd");
                var myDataSet = myDataFolder.getFiles("*.csv");
                //Open the Template and Declare its value of myDocument
                var myDocument = app.open(File( myTemplates ));
                // Turning on the BackGround Layer For Proofing
                var myLayer = app.documents.item(0).layers.item("Background");
                myLayer.visible = false ;
                //Setting the data source to be merged    
                myDocument.dataMergeProperties.selectDataSource(File(myDataSet));
                // Merging the Records and creating the overset text document to make sure nothing is wrong with the file.     
                myDocument.dataMergeProperties.mergeRecords(File("~/Documents/hotfolder/output/"+ jobNumber+"-composedoverset.txt"));
                //close the unmerged document.     
                myDocument.close(SaveOptions.no);
                //Exporting the merged document as composed file
                app.activeDocument.exportFile(ExportFormat.pdfType, File("~/Documents/hotfolder/output/"+ jobNumber+"-composed.pdf"),false,"bandwPrinting");
                //Closing the merged document.
                app.activeDocument.close(SaveOptions.no);
                alert("Complete");

    I am sorry I did not ask the question properly.
    The attached code does work on my system The template has the place holders already set. (We use this template already to produce about 100 thousand records a day with another system)
    the .csv is routed through another routine before it is put in that folder to get rid of any bad characters. It also maps the headers to the placeholders.
    The output folder is on my system
    the preset is a preset on my system.
    What I am asking is how do I produce Directly to a pdf not into memory.
    When I try to produce 25 -35 thousand records it fills the memory and gets stuck.
    Several plugins do not have this problem I am relatively certain that they are not merging directly into InDesign but into a pdf.  

  • Error Message: Photos found in iPhoto Library that were not imported

    BACKGROUND: I recently migrated my iPhoto'07 library of around 12,000 photos over to iPhoto'08. I reorganized all my albums as events. After that, I've been adding some old photos to my new iPhoto'08 library. Currently I have around 15,000 pictures in my iPhoto'08 library.
    PROBLEM: Recently, iPhoto gives me this message "990 photos have been found in the iPhoto Library that were not imported". The number (990) has been growing with more pictures I add to the library.
    OLD POSTS: Searching for prior posts related to this error in this forum, I came across a suggestion to delete the library and reimport the photos. Given my large library size (15000 photos, 60GB - all organized as events, no albums), this solution will take a lot of manual work.
    QUESTION: If anyone out there has a suggestion for how to fix this, it'll be deeply appreciated. Thanks!

    periyar:
    Welcome to the Apple Discussions. Open the iPhoto library package and look for any folders names Import or Imported or something like that. Here's what normally would be in the package. If you find any folders like that them move them to the desktop, open iPhoto and import.
    If there are no pending import folders try rebuilding the library and select all the options. If they are true orphans they should be imported at that time.
    Don't start over with a new library quite yet. If you have to there are ways we can preserve the keywords and comments. Also, with the paid version of iPhoto Library Manager you could copy all of the "known" photo from the old library to a new one including the albums, comments and titles. Then you can do some comparing of the two library packages and see where these left out files are.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Saving as a PDF -How do you make the PDF not bigger than the original file?

    I am running Mac OS X Panther.
    I understand that Mac OS X creates a "Digital Master" PDF file, which is larger than a typical PDF file because the resolution of images in the file is not scaled down. The PDF file includes each font character used in the document.
    Problem is this.
    I actually want the PDF NOT to be bigger than the original document file.
    Can anyone please help?
    Thanks
    J Slater

    jslat,
    It's probably most important to know exactly what you intend to do with the saved pdf file? Are you going to need to print the pdf etc.?
    This Apple Knowledge Base article may help if you haven't already read it:
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1035.html
    littleshoulders [:-)
    edit: You have posted in the 10.3 Panther OS and earlier forum and you appear to be using 10.4 (Tiger) by your computer specs below your topic which may handle pdf's somewhat differently. In your post you mention Panther so I just wanted to clarify if need be.
    Message was edited by: littleshoulders

  • Do not import duplicates-BUT DOES

    I had exported all of my images that had Keywords added to them to 'start over' my library. I imported those back to establish my base library. All is good. I then went back to my non-keyword tagged images, many of which are those that were imported with keywords. Even though Do Not Import Duplicates is checked, duplicates get imported.
    DSCF1046.jpg (tagged with 'Me') is in library, go to folder with the un-tagged image DSCF1046.jpg (I don't shoot RAW so it's not that issue) and it gets imported.
    Is it not considered a duplicate because one has IPTC data embedded and the other doesn't even though they are named the same?
    OS 10.6.4, Aperture 3.0.3

    Duplicate detection is imperfect. It usually works, with the proviso that you must be importing into the same project where the files already exists. That said, it's not 100% perfect.
    My suggestion if you're importing from the same card multiple times is to use "check none" and then manually select the files you want to import. Takes a few seconds but then you know the right thing will happen. I do this all the time when I'm traveling and I want to have a couple backups of my images in a couple places: On the memory card is one of those backups so I shoot until I fill them; often across multiple shoots and downloads.

  • Multi-page pdf not linking properly

    I have a 6-page interactive indd template that I have been using for months without any issues (well, not these at least), but recently it has been not linking multi page pdfs properly. The pdf that I use is always saved from illustrator cs6 and correlates page to page with the indesign file; page 1 in the pdf links with page 1 in the indd and so on... The issue I am having is that almost every other time I link the file up it behaves differently. Sometimes it will link one page of the pdf to all of the pages of the indd while showing that they are linked to different pages, other times it will not show up at all on the pages, but will show that it is linked in the links panel. Sometimes it will only link one of the pages up and leave the other 5 blank or it will link the pages up with some sort of transparency...
    Now, I am not sure if this is a problem with Illustrator or Indesign because of another symptom: Sometimes when I save the file as a pdf it saves as if it is not a multi-page pdf with different content on every page, but rather a multi-page pdf with every page being a zoomed-out view of all of the artboards together but with only some of the content showing (only artboard 3 and 4, only artboard 6 and half of 1) when it is opened in acrobat. Also, sometimes the pdf when viewed in acrobat looks perfect, but when linked it only does a few of the pages in indesign.
    Long story short, this doesn't make any sense...  I know this is hard to follow and I don't understand why or how it is happening because it seems that every time has a different issue.
    I know that you'll probably have questions and I’ll do my best to answer them, but I'm afraid that uploading files for samples won't work because there appears to be nothing wrong with the files themselves... just the links and/or export.
    Win7, CS6 , 12 gigs RAM, i5

    I have been using this method successfully for quite some time with these exact files, only in the last few days has this problem shown up.
    When I originally made the template in indesign, I imported the pdf, showed import options, and linked the pages to the same page number in the pdf. 1 to 1, 2 to 2, etc. My original thought was that this setting had been lost, so deleted the linked pdf and imported it again to try to get the 1 to 1 link. However, that did not change anything and I noticed that the page that shows up by itself in the pdf is almost always page 2, not page 1. If the page-to-page connection had been lost, all of the pages in indesign would be linking to page 1 as is the default behavior for linked pdfs.
    Also, I thought that the save issue would be on the illustrator side too, so I tried resaving it but that didn't work either. The only way that I can get the file to work is if I remake it completely and save over the old file.
    Now, I know that you're most likely thinking that this is an illustrator issue, but I don't think that it is one or the other, but rather both of them. The screenshots that I attached above are not the only way this error manifests itself. Sometimes the pdf looks right in acrobat, but once it is linked it displays with a transparency, shows only a few of the pages, or shows none at all.
    I'm probably going in circles here, but I cannot figure out which program is the cause of the error or if there are two different issues that are happening at the same time.

  • Using DVD@ccess for .PDF (not clear to me in Manual)

    So I've got a link typed into a certain page of the DVD to link to a .pdf file. The link is typed as:
    file:///DVDname/foldername/file.pdf
    This is how it tells me to link it in the Manual, however whenever I burn a test disc, put it in the computer, check the "enable DVD@ccess" box in the DVD Player prefs, and test it, it does not open the file. How is this not working? Do I have to place the folder in a specific location when the DVD begins to build and format, or do I have to include the full line of folder names (folders within folders) when I type in the address above? Am I selecting the wrong folder when I choose the "content" folder before building the DVD?

    Good links from Drew...
    The process is complicated. I'll try to make it simple.
    First off, your pdf file needs to be in a folder somewhere on your machine - let's call it EXTRAS. That folder itself now needs to be in a parent folder as well, let's call that one ROM_CONTENT. For simplicity just set this up on your desktop for now.
    From within DVDSP you need to set the location of the pdf file in the property inspector, but you do this in two places. First off, click on the disc icon in the outline view and then look in the property inspector for the ROM section. Use the 'Browse' facility to specify the outer folder you made earlier, and make sure the path in the property inspector points to the location of 'ROM_CONTENT'.
    Now, in the menu that is going to hold the DVD@ccess link you also specify the path to the file, but this time you set up the path as it would appear after the disc is built. If your pdf file is called 'products' and your DVD itself is called 'My_Disc' then the URL that you put in the menu needs to be:
    file:///My_Disc/EXTRAS/products.pdf
    Note that you *do not* use the name of the parent folder... this is very important!
    When DVDSP builds the disc it will place the Video_TS and Audio_TS folders at the root level (the first thing you see if you open the disc in your finder). When you use DVD@ccess it will also put a folder to hold the @ccess.exe file with instructions to PC users, and it will also put whatever it finds inside the ROM_CONTENT folder at the root level of the disc. In the example here it finds a folder called EXTRAS and so the root of your disc looks nice and tidy - four folders. If you didn't use the inner folder then your pdf would appear as a file on the root... which to me is plain messy.
    Now, since the folder called EXTRAS is now at the root level and holding the file to launch, that's what you MUST specify when writing the menu URL.
    Finally, in order to see this working on your Mac (simulator) you need to turn on the DVD@ccess prefs in both DVDSP and DVD Player. Once done, the file should launch your default pdf viewer (probably 'Preview'). If it doesn't then there is either something wrong with the paths you have used inside DVDSP, or there is something wrong with your Mac! I'd suspect the paths before anything else...

  • Photos in library but not imported

    If the photos are in the library but are not imported then where are they and how do I find them? I keep getting a dialog box when I start iphoto that tells me that iphoto found photos in the library that were not imported and asks if I would like to import them. If I say no it imports them anyway and asks me again the next time i start iphoto so i now have over 400 copies of the same photo. So now every time I start iphoto it finds the same photo and all the copies in the library but they are not imported so I want to go find wherever they are and delete them for good so that dialog box goes away when I start iphoto...help!

    shatton:
    Welcome to the Apple Discussions. Close iPhoto, open the library package like this and look for a folder with "Import" in its title. If you find one move it to the desktop and launch iPhoto. Note if you get that message or not. If not then try importing the contents of the Import folder you moved to the desktop.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Maybe you are looking for