diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-05-02 16:28:22 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-02 16:28:22 +0000 |
commit | ac91f6b598f5e0373176e6e9b860c1e135fddf65 (patch) | |
tree | ba8c1f8bcb18291836319dc6cc39b452c840ef76 /xfa/fxfa/cxfa_ffimageedit.cpp | |
parent | 32ea6d0f847dab80e5fc03142ffa2238b552b357 (diff) | |
download | pdfium-ac91f6b598f5e0373176e6e9b860c1e135fddf65.tar.xz |
Pass DPI as CFX_Size in XFA_DrawImage.
Change-Id: Ifbcb727402c1c28a6e8abe02511d6da6828c02f7
Reviewed-on: https://pdfium-review.googlesource.com/31915
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffimageedit.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_ffimageedit.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fxfa/cxfa_ffimageedit.cpp b/xfa/fxfa/cxfa_ffimageedit.cpp index f07bc1e267..c1d1a09bac 100644 --- a/xfa/fxfa/cxfa_ffimageedit.cpp +++ b/xfa/fxfa/cxfa_ffimageedit.cpp @@ -89,9 +89,8 @@ void CXFA_FFImageEdit::RenderWidget(CXFA_Graphics* pGS, iAspect = image->GetAspect(); } - CFX_Size dpi = m_pNode->GetImageEditDpi(); - XFA_DrawImage(pGS, rtImage, mtRotate, pDIBitmap, iAspect, dpi.width, - dpi.height, iHorzAlign, iVertAlign); + XFA_DrawImage(pGS, rtImage, mtRotate, pDIBitmap, iAspect, + m_pNode->GetImageEditDpi(), iHorzAlign, iVertAlign); } bool CXFA_FFImageEdit::AcceptsFocusOnButtonDown(uint32_t dwFlags, |