[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - filter/source

Aron Budea (via logerrit) logerrit at kemper.freedesktop.org
Mon Sep 30 12:35:13 UTC 2019


 filter/source/pdf/pdfexport.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 190f0621c2f799e5f44599ae93339aa93c9b9237
Author:     Aron Budea <aron.budea at collabora.com>
AuthorDate: Fri Sep 20 04:54:00 2019 +0200
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Mon Sep 30 14:34:27 2019 +0200

    tdf#124377: enable anti-aliasing metafile during redaction
    
    Change-Id: I6c8a0f6ceaad5d9ec47cce1b00b8ccdd77530aaf
    Reviewed-on: https://gerrit.libreoffice.org/79266
    Tested-by: Jenkins
    Reviewed-by: Muhammet Kara <muhammet.kara at collabora.com>
    (cherry picked from commit cd6780aae1392d4c1af0b15b311a4966834a9602)
    Reviewed-on: https://gerrit.libreoffice.org/79478
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index 175cc4150c4e..7617146338d3 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -239,7 +239,8 @@ bool PDFExport::ExportSelection( vcl::PDFWriter& rPDFWriter,
                             try
                             {
                                 Graphic aGraph(aMtf);
-                                BitmapEx bmp = aGraph.GetBitmapEx();
+                                // use antialiasing to improve how graphic objects look
+                                BitmapEx bmp = aGraph.GetBitmapEx(GraphicConversionParameters(Size(0, 0), false, true, false));
                                 Graphic bgraph(bmp);
                                 aMtf = bgraph.GetGDIMetaFile();
                             }


More information about the Libreoffice-commits mailing list