diff options
author | Gökçen Eraslan <gokcen.eraslan@gmail.com> | 2012-05-25 17:05:57 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-05-28 09:58:48 +0300 |
commit | 94713bbeca876c1718305791d45ff8bb986da433 (patch) | |
tree | 1ff60f798072698a2acc2e9ff1a10b874fcb76de | |
parent | bb4ae4abb5c01b1fd1e704e19b7913c286642899 (diff) |
fdo#46378: Prefer interpolation-based image rescaling in PDF export.
Change-Id: I9ead1221b4562dea0e1ef289944ac11ea850ed1a
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl2.cxx b/vcl/source/gdi/pdfwriter_impl2.cxx index 4ba5e2c8a319..b86e758667bb 100644 --- a/vcl/source/gdi/pdfwriter_impl2.cxx +++ b/vcl/source/gdi/pdfwriter_impl2.cxx @@ -137,7 +137,7 @@ void PDFWriterImpl::implWriteBitmapEx( const Point& i_rPoint, const Size& i_rSiz aNewBmpSize.Height() = FRound( fMaxPixelX / fBmpWH); } if( aNewBmpSize.Width() && aNewBmpSize.Height() ) - aBitmapEx.Scale( aNewBmpSize ); + aBitmapEx.Scale( aNewBmpSize, BMP_SCALE_INTERPOLATE ); else aBitmapEx.SetEmpty(); } |