Fix showing of non-ASCII characters in annotations

Resolves: #1968289
This commit is contained in:
Marek Kasik 2021-06-14 14:46:49 +02:00
parent 3ef8abd69a
commit c5391ebaf3
2 changed files with 36 additions and 1 deletions

View File

@ -0,0 +1,28 @@
From 5dbe101b7c3561aedf33872e218b8d1b6984f623 Mon Sep 17 00:00:00 2001
From: Albert Astals Cid <aacid@kde.org>
Date: Sat, 8 May 2021 00:54:13 +0200
Subject: [PATCH] Restore setting the Encoding in createAnnotDrawFont
It was removed in 9db685f379c1c9195b5f0c9a693e7a581e6b214f and as far as
i remember the reason was that signatures created with that hung Adobe
Reader, but I can't reproduce it anymore and on top of that is causing
regressions when rendering PDF files (Issue #1070) so restore it.
---
poppler/Annot.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/poppler/Annot.cc b/poppler/Annot.cc
index 5287b4dc..40b1085a 100644
--- a/poppler/Annot.cc
+++ b/poppler/Annot.cc
@@ -2852,6 +2852,7 @@ static GfxFont *createAnnotDrawFont(XRef *xref, Dict *fontParentDict, const char
Dict *fontDict = new Dict(xref);
fontDict->add("BaseFont", Object(objName, fontname));
fontDict->add("Subtype", Object(objName, "Type1"));
+ fontDict->add("Encoding", Object(objName, "WinAnsiEncoding"));
Object fontsDictObj = fontParentDict->lookup("Font");
if (!fontsDictObj.isDict()) {
--
2.31.1

View File

@ -3,7 +3,7 @@
Summary: PDF rendering library
Name: poppler
Version: 21.01.0
Release: 9%{?dist}
Release: 10%{?dist}
License: (GPLv2 or GPLv3) and GPLv2+ and LGPLv2+ and MIT
URL: http://poppler.freedesktop.org/
Source0: http://poppler.freedesktop.org/poppler-%{version}.tar.xz
@ -23,6 +23,9 @@ Patch3: poppler-21.01.0-glib-introspection.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1944726
Patch4: poppler-21.01.0-nss.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1968289
Patch5: poppler-21.01.0-show-annotation-text.patch
BuildRequires: make
BuildRequires: cmake
BuildRequires: gcc-c++
@ -216,6 +219,10 @@ test "$(pkg-config --modversion poppler-qt5)" = "%{version}"
%{_mandir}/man1/*
%changelog
* Mon Jun 14 2021 Marek Kasik <mkasik@redhat.com> - 21.01.0-10
- Fix showing of upper-case non-ASCII characters in annotations
- Resolves: #1968289
* Mon Jun 14 2021 Marek Kasik <mkasik@redhat.com> - 21.01.0-9
- Remove searchAcrossLines.pdf due to license
- Resolves: #1967921