https://bugs.documentfoundation.org/show_bug.cgi?id=157362
--- Comment #1 from Callegar <[email protected]> --- Interesting enough, the inconsistency in cropping between the document in editing/presenting mode and the PDF export seems to occur only when I do the export programmatically, with a macro. The core of the macro is the following, I don't see anything strange in it. ``` Dim oPropPDF(3) As New com.sun.star.beans.PropertyValue oPropPDF(0).Name="ExportNotesPages" oPropPDF(0).Value=true oPropPDF(1).Name="ExportBookmarks" oPropPDF(1).Value=false oPropPDF(2).Name="EmbedStandardFonts" oPropPDF(2).Value=true Dim oProp(3) As New com.sun.star.beans.PropertyValue oProp(0).Name="Overwrite" oProp(0).Value=true oProp(1).Name="FilterName" oProp(1).Value="impress_pdf_Export" oProp(2).Name="FilterData" oProp(2).Value=oPropPDF() oDoc.storeToURL(pdfURL,oProp()) ``` Any clue? -- You are receiving this mail because: You are the assignee for the bug.
