diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-09-18 17:52:41 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-09-18 21:24:38 +0200 |
commit | 01024ee24c6e89044c68051f6fd5f1264905e90c (patch) | |
tree | 4fbfc06d643f72cab1cf5525c921565d2fb90c65 /offapi | |
parent | ccf35ce98771cac805aafa58a1bcfaba17c59a12 (diff) |
[API CHANGE] tdf#136836 emfio: set size hint on inner PDF if used as shape fill
The bugdoc has a shape, its bitmap fill is an EMF, which is actually a
PDF. The PDF is has a height of 5cm, but the shape has a height of 14
cm.
Inform vcl::RenderPDFBitmaps() about the size of the shape, so the
result won't be blurry. This approach makes sure that we don't
unconditionally render at higher resolution, i.e. the "load a PDF of 100
pages into Online" use-case won't use more memory than before.
API CHANGE, because the EMF reader is only available via UNO, though
it's likely that no actual external code would ever invoke it directly.
Change-Id: If1d8def0136d408a31a0cc54777a7f26430a0ff3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102996
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/graphic/XEmfParser.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/offapi/com/sun/star/graphic/XEmfParser.idl b/offapi/com/sun/star/graphic/XEmfParser.idl index 1c2fd10d7fff..234d70bc1937 100644 --- a/offapi/com/sun/star/graphic/XEmfParser.idl +++ b/offapi/com/sun/star/graphic/XEmfParser.idl @@ -20,6 +20,7 @@ #ifndef __com_sun_star_graphic_XEmfParser_idl__ #define __com_sun_star_graphic_XEmfParser_idl__ +#include <com/sun/star/geometry/RealPoint2D.idl> #include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/io/XInputStream.idl> @@ -51,6 +52,13 @@ interface XEmfParser : ::com::sun::star::uno::XInterface [in] io::XInputStream xEmfStream, [in] string aAbsolutePath, [in] ::com::sun::star::beans::PropertyValues Properties); + + /** Sets a size hint on this object. + + @param Size + the size in 100/th mm + */ + void setSizeHint([in] com::sun::star::geometry::RealPoint2D Size); }; }; }; }; }; |