Printing and export to PDF

I am having a problem with my PDF file. When I print from Pages everything looks great. When I either export from pages as a PDF or save as a PDF from the print screen, I am getting extra margins on the top of the page. How can I get exactly what is printing to save as a PDF?

How can I get exactly what is printing to save as a PDF?
Hmm ... possibly check Page Setup in case the imageable area has been changed accidentally.
hh

Similar Messages

  • How can you add your own print and export buttons to the CR viewer toolbar?

    I posted a previous question that was asking how to get around the Information Bar in IE7 when you export and print.  Unfortunately the CR viewer file download code gets blocked by IE7 because the buttons don't directly download the file.  However, I have been able to get a regular button that calls the following code and streams the file to the client and IE7 does not block it. 
    Sub PrintPDF(sender As Object, e As System.EventArgs)
         Dim crReportDocument as ReportDocument
         Dim crExportOptions as ExportOptions
         Dim crDiskFileDestinationOptions as DiskFileDestinationOptions
         Dim Fname as string
         CrReportDocument = New ReportDocument()
         CrReportDocument.Load(Server.MapPath("estactionlist.rpt"))
         Fname = Server.MapPath("./") & Session.SessionID.ToString & ".pdf"
         CrDiskFileDestinationOptions = New DiskFileDestinationOptions()
         CrDiskFileDestinationOptions.DiskFileName = FName
         CrExportOptions = crReportDocument.ExportOptions
         With crExportOptions
              .DestinationOptions = CrDiskFileDestinationOptions
              .ExportDestinationType = ExportDestinationType.DiskFile
              .ExportFormatType = ExportFormatType.PortableDocFormat
         End With
         CrReportDocument.Export()
         Response.ClearContent()
         Response.ClearHeaders()
                    Response.AddHeader("content-disposition", "attachment;filename=test.pdf")
                    Response.ContentType = "application/pdf"
                    Response.Charset = ""
                    Response.WriteFile(Fname)
                    Response.Flush()
         Response.Close()
         System.IO.File.Delete(Fname)
    End Sub
    So here are my questions?
    1. Is it possible to add a custom print control/icon to the CR viewer toolbar?
    2. If one is not possible, then is it possible to override the CR viewer print and export buttons with your own subroutines like the one above?
    I just want my page to look nice and hate to have print and export buttons outside of my CR viewer. 
    Thanks,
    Kevin

    It might be possible to replace the buttons in a windows app since you can retrieve the toolbar as a toolbar object in the winform viewer  ( ToolStrip toolBar = (ToolStrip) crystalReportViewer1.Controls[3]; )  however with a web app, it's a lot more difficult.
    The problem is that that you need to parse the Request string to try and figure out if the print / export button was clicked.  The code below makes the print button disappear if you click it, so you should be able to modify it to call your custom printing / exporting code instead  (You have to do this check in a postback)
            Dim I As Integer = 0
            If Request.Form.AllKeys.Length > 0 Then
                For I = 0 To Request.Form.AllKeys.Length - 1
                    Response.Write(Request.Form.Keys(I).ToString & "<BR>")
                    If Request.Form.Keys(I).ToString = "CrystalReportViewer2:_ctl2:_ctl2.x" Then
                        CrystalReportViewer2.HasPrintButton = False
                    End If
                Next
           End If
    Shawn

  • Place multiple pdfs into separate indesign and export to pdf again

    Ok I have a lot of PDFs that I need to place into indesign in their own file, then re-export back as a PDF again.
    Can anyone recommend a script for this if there is one? All the pdfs have different page counts etc. and I don't need to save the Indesign file.
    I just want to put all the PDFs into their own InDesign file and reexport to PDF again. They are all A4 sized PDFs, 210 x 297mm.
    Any help is appreciated.
    Thanks

    Thanks harbs
    I need to Save all the pdfs as RTF, and some of the PDFs have bad tags and won't allow me to save as RTF.
    I can batch process them in Acrobat to Print to PDF and that works for some, but not all the PDFs, it won't print some of them back to PDF.
    I have 100's of these "bad pdfs" and it would be great to be able to place them all into separate indesign files and export out as pdf again. It will be tedious to run the PDF importer and export for all of the files.
    I don't need to save the indesign file, just place and export the pdf again.
    Just looking to automate the process.

  • Font is smaller when I print or export to PDF

    Dear all,
    I have a strange problem when I try to print or export to pdf my .pages document.
    I use FontAwesome.otf in order to have some nice icons but when I print the document this icons are smaller then the document.
    I also try to make them bigger but they get reduce anyway.
    Screenshot from the pages document
    Screenshot from the printed or exported pdf
    Any suggestion is more then welcome, thank you!

    To install fontawesome you simply download the kit from this link. Once you unzipped the file you will find the .otf font inside the folder 'font'. Then simply drag and drop the font inside your fontbook.
    To insert an icon in pages you simply copy and paste it from the cheatsheet. Remember to change the font to FontAwesome in the Format > Text panel otherwise you would not see the character.
    Hope it helps!

  • Whenever I print or export to PDF a document with superscripts or subscripts, it deletes them

    Whenever I print or export to PDF a document with superscripts or subscripts, it deletes them.
    I'm doing a chemistry degree so as you can imagine, there are a lot of missing superscripts or subscripts through my text!
    I just tried updating my iWork suite to newest version but the problem still persists.

    This bug has been around probably since the beginning of Pages 5. Here's one such thread: https://discussions.apple.com/thread/5854946.
    With regard to using MathType with tables in Pages 5+, there's another Pages bug that affects that. Please read our 2 articles about using MathType with Pages (and Keynote, and Numbers):
    http://www.dessci.com/en/support/mathtype/tsn/tsn146.htm
    http://www.dessci.com/en/products/mathtype/works_with.asp#!target=apple_pages_ma c
    Bob Mathews
    Design Science

  • How do I write a javascript code to open InDesign File, import Doc, save and export to pdf?

    How do I write a javascript code to open InDesign File, import Doc, save and export to pdf?

    Hi hasvi,
    Need Template(.indt), textframes etc for the following script:
    var myFolderInd = Folder.selectDialog();
    var myFile = myFolderInd.getFiles("*indt");
    app.open(myFile)
    var myDoc = app.activeDocument;
    var myDocName = myDoc.name;
    var mySaveFile = app.activeDocument.save(myFolderInd.fsName + "/" + myDocName.split(".indt").join(".indd"));
    var myFolderDoc = Folder.selectDialog();
    var myFile1 = myFolderDoc.getFiles("*doc");
    mySaveFile.pages[0].textFrames[0].place(File(myFile1))
    //~ mySaveFile.place(File(myFile1))
    app.activeDocument.textPreferences.smartTextReflow = true;
    var myPDFFile = new File(mySaveFile.filePath + "/" + mySaveFile.name.split(".indd").join(".pdf"))
    myDoc.exportFile(ExportFormat.PDF_TYPE, File("~/Desktop/abc.pdf"));
    alert("Process Completed")
    Regards
    Siraj

  • How to hide the Print and Export button in analytics report or tasks pane

    Hi Experts,
    In BIEE 11g,
    How to hide the Print and Export button in analytics report or tasks pane ?
    For example:
    In console,I have created one userA which is belong to BIConsumer GROUP , when I make use of the highest user 'weblogic' to create one simple report, then the userA will login the analytivs to view this report (not dashboard), it will show the print and export as below.So customers do not want to give him the privilege for printing and exporting.
    In addtion, go to catalog->tasks(left corner), it will also show the print and export button. So how to hide or not access these button?
    Note: Maybe it can use the policy for consumer role for implementing this requirement, but I do not know how to modify the policy. Are you facing the problem? Thanks.

    Hi,
    1. Create seperate folder for Reports & Dashobard.
    2. For BI_Consumer (userA) set the catalog permission to view Dashboard Folder only and remove permission on the Report Folder (you can give traverse permission but don't give Open permision).
    3. By this user won't be able to open or run any reports in that folder and the only way he can see the reports is through Dashboard and on dashboard the export and print buttone can be removed very easily.
    Mark helpful if it helps.
    Regards,
    Kashi
    Edited by: K N Yadav on 24 May, 2013 1:51 AM

  • Set location of print and export dialog boxes?

    Is there any way to set the location of the print and export dialog boxes in the viewer?
    To say, have the dialog box show up in the top left corner instead of in the middle of the document?

    There's no easy way to customize that for the viewer.
    Some people make the toolbar invisible and write their own controls.
    Sincerely,
    Ted Ueda

  • I have just purchased exportPDF and every time I try and export a PDF it keeps asking me to pay again!!!!

    I have just purchased ExportDPF and every time I try and export a PDF it keeps asking me to pay again!!!!

    Hi markw14322597,
    I've just checked your account: Your subscription order is still pending, which is why you're unable to log in and use your subscription just yet.
    It can take 24-48 hours for an order to process, but once it does you'll be able to log in and convert files.
    Best,
    Sara

  • Printing error and Export to PDF error after a Quark Express convert

    I are working on a catalogue that was previously made with Quark Express. I used q2id to convert over to InDesign CS3. I had some minor issues setting up the new fonts, but that was no big deal. Now that the catalogue is close to finished, I want to do some test print, however, on several of the files it start processing the printing, finish the processing of all the pages, then kills the print job and comes with the following error:
    Print Error: The Adobe Print Engine has failed to output your data due to an unknown problem.
    Similar error happens when I try to export to PDF, this error only says:
    Failed to Export PFD file
    Anyone had a similar problem?? I've done a preflight but ID does not indicate any problems with the file nor its content. Is there another tool to scan the file with to find errors?? Possible fix it?? Is there a log file I could check??
    In advance, thanks guys.
    Working on:
    InDesign CS3
    Windows XP Pro, SP02
    2 GB RAM

    Thanks Ken,
    Not sure how to check if we do have OPI comments on some of the images, but looks like I have found a solution to the printing problem at least.
    Thanks to a respons by Peter Spier to another topic with similar problems:
    Peter Spier - 4:00am Mar 11, 08 PST (#5 of 6)
    The symptoms could describe document corruption rather than network issues which might fall into the category of things that can be cleared up through export to .inx.
    Try exporting one or two of the problem files to interchange format, open those and save as new .indd and make a new book file. See if that behaves differently across the network.
    I also found another article about INX files, that confirms this technique:
    http://avondale.typepad.com/indesignupdate/2005/08/what_the_heck_i.html
    "...INX can also help “clean up” problem files in InDesign CS2—if you’re running into problems, especially with files that started their lives as QuarkXPress or PageMaker files, try exporting the document as INX and then opening that file."
    So, I
    1. exported all files, one by one to INX or InDesign InterChanged
    2. Then reopened those files, saved back as regular .indd files
    3. Reopend the new file (hoping for a refreshed file and test to see if it would open without problems.)
    4. Then packed the files indevidually and reopend the new packed files when done.
    Alle the files now print without any problems but export to PDF still fails with the same error message.
    Would the OPI comment be a problem here maybe?
    Thanks!
    bard

  • PDF Printer and Export to Word

    I was trying to export this PDF to word, and Vista would always claim that the Acrobat stopped working when it is checking the tags. Then later I was just trying to see if it would work if I start with a new PDF, so I was trying to print it. Now I get this:
    %%[ ProductName: Distiller ]%%
    %%[ Error: invalidfont; OffendingCommand: definefont; ErrorInfo: .notdef --nostringval-- ]%%
    Stack:
    /Font
    -dict-
    /PVRAAA+DY98+ZBHAlq-98
    false
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%

    Thanks. Now that the PDF is smaller, I can convert it into a Word document.
    HOWEVER, now all the numbers are messed up. For example, when I try to select and copy the number 93.57 I will get (%&,*
    And its like that for all numbers in the document......
    http://www.fileden.com/files/881/pdf1.pdf

  • Why does my high res photoshop image appear blurry when placed in InDesign and Exported as PDF?

    Hi there,
    I have a problem I've been trying to solve for days but just can't find the answer anywhere on the internet.
    I have a large, good quality photoshop file (2268 x 979 pixels, resolution 300 pixels per inch). When I place it into InDesign, the image appears OK (I've changed my display settings to HIGH) - I then resize it in InDesign to 10% and the file still looks great! Then, when I export it as PDF (high quality print) it looks blurry.
    Does anybody know why? The strangest thing is, I've placed other photoshop images in the same InDesign file and they look crystal clear. It is just this one I am having trouble with. I've saved it in the same folder as the other pictures, I've tried placing it as psd. , jpg. , photoshop pdf, png. everything...
    The image looks great in both photoshop and indesign, only when exported as pdf it looks awful.
    Any help will be greatly appreciated,
    Many thanks in advance!
    Weronika

    It's probably the extreme reduction -- you're throwing away 90% of the image pixels and interpolating, and then using jpeg compression on top.

  • EPS Fonts using PrintToPrinter and export to PDF on web server

    Post Author: leighlmorgan
    CA Forum: .NET
    I'm trying to print a Crystal10 report from a web server using PrintToPrinter and exporting it to PDF at the same time for audit purposes.  My problem is that the report uses Rotis EPS font which doesn't print correctly (substituted by Arial it appears) or export correctly to PDF.  But it does print OK from the web client and exports to RTF, Excel and Word OK.
    If I logon to the server as the identity account that the web server is running under (in order to have access to installed printers) then it can print Rotis perfectly happily.
    I have tried another EPS font and that also fails to print, so I'm guessing EPS fonts are the root of the problem.
    What do I need to do to make EPS fonts work?

    In a "word"; you can not. Not with the Crystal Reports SDK anyhow. There are ADOBE provided APIs that will allow merging pf PDF files and possibly other 3rd party tools, but no CR SDK will do that for you.
    Ludek

  • Insert HTML and export to PDF problem (ID CS6)

    Greetings,
    A new feature in Indesign CS6 is to insert HTML snippets in an Indesign document via the Object > Insert HTML option.
    This will insert a frame in the page containing the rendered HTML content.
    There are several issues that I have encountered using this feature in Indesign CS6. Can anyone advise if these are bugs/ux issues and provide any alternatives/solutions.
    1) After inserting any HTML content (even the default "This is an HTML snippet"), when I try to export to PDF format (Interactive or Print), the  HTML content or rather its frame container is rendered in black. I've noticed that the HTML content is exported as a image so all I get are black rectangles.
    There is no problem when I try to export to HTML format.
    2) There seems to be a paste size limit in the Insert HTML text area/field as I can only paste 16566 characters of HTML code. (Haven't checked yet if the limit is in characters or tags or newlines).
    3) How can you set such that the HTML object frame will span multiple pages for cases where the HTML content is larger than the height of the page? Since it is not a text frame, I can't find a threading feature or a possible workaround. Or is the "Insert HTML" feature not really applicable for PDF export workflows but only for epubs?
    Thanks

    Oh ok. I guess direct HTML import is still not possible in ID CS6 (either import as XML or convert to DOC/RTF) for PDF export.
    Thanks

  • How to embed SWF in InDesign and export as PDF?

    I am trying to do something that seems very simple, but I can't get it to work. I have a simple SWF animation that I have exported from Flash CS5, and I have placed it into my Indesign CS5 document. I checked these items in the Media panel:
    Play on Page Load
    Poster: From Current Frame
    When I export the PDF, I select PDF/X-4 and choose Interactive Elements: Include Appearance. I get a still image of the animation in the PDF, but it doesn't play. Why?

    Hi, I have the same issue??
    Even when exporting as an interactive pdf.
    My problem is that I am trying to figure out how to export my swf embedded file into an interactive pdf.
    I have created an interactive presentation with buttons, effects etc. After which I exported to swf so that all the effects work.
    But when placing the swf file back into indesign and exporting again as an interactive pdf it doesn't work at all, all I get is a white screen. (I need a pdf for clients basically, they dont want any swf or flash files.)
    Even though after placing the swf file, in the media window I ticked play on page load as well as chose a cover image for the swf file. Still just a white screen when exporting.
    To repeat, I need to know how to convert my swf file into an interactive pdf.
    Any pointers please would be great I have some swf presentations I need to change into pdf as soon as possible or before tomorrow to be exact before our monthly meeting with clients.
    Please help

Maybe you are looking for

  • Please urgent help needed for the following

    Hi Everybody! I desperately need help as soon as possible. Following is the partial code for the driver program which will use the Employee class Objects(Employee is declared abstract). If you want to see whole code you can take a look at my last two

  • How to set not synchonize from CRM to R/3 in some type of business partner

    Dear Sir, our office have the ECC6 and crm 5.0, we have the some typel business partner synbetween r/3 and CRM . However, we had  setting one bussiness partner number with external number , and we are not allow to synchoize back to r/3 . Where can i

  • Visual Studio Update 2 hangs for 13 minutes on "Creating a system restore point..."

    It appears that Visual Studio 2012 Update 2 hangs for a long period of time before it tries to create a system restore point.  Should I create a Microsoft Connect issue for this? Here is what I did: I created a new Windows 8 x86 Virtual Machine using

  • How to start my webpage after the intro

    Hello. I'm novel at Flash, just started a few days ago, so I guess my question is basic . I've cheked it in forums but I could not find an answer. 1. What I've got: I'm making my personal webpage in Flash. I've created the INTRO, it's just a bunch of

  • Hacker on my system...... HELP !!!!

    Ok, long story but some other members in my family are going through rough times and getting divorced, they were together for quite some time but the husband isn't happy, he had used confidential material in court which was only in our email accounts