poppler/SplashOutputDev.cc | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 0ee0a90061abdd8858b1b6141f0e705088df29e9
Author: Albert Astals Cid <[email protected]>
Date: Tue Sep 27 01:07:13 2022 +0200
SplashOutputDev::tilingPatternFill: Properly restore CTM on failure
Fixes issue #1292
diff --git a/poppler/SplashOutputDev.cc b/poppler/SplashOutputDev.cc
index 58e27896..6ba98424 100644
--- a/poppler/SplashOutputDev.cc
+++ b/poppler/SplashOutputDev.cc
@@ -4457,6 +4457,9 @@ bool SplashOutputDev::tilingPatternFill(GfxState *state,
Gfx *gfxA, Catalog *cat
retValue = splash->drawImage(&tilingBitmapSrc, nullptr, &imgData,
colorMode, true, result_width, result_height, matc, false, true) == splashOk;
}
delete tBitmap;
+ if (!retValue) {
+ state->setCTM(savedCTM[0], savedCTM[1], savedCTM[2], savedCTM[3],
savedCTM[4], savedCTM[5]);
+ }
return retValue;
}