Set alignment for rendering to default

Resolves: #2029329
This commit is contained in:
Marek Kasik 2021-12-08 11:34:00 +01:00
parent 2a6a486011
commit ff3ee5b7e2
2 changed files with 40 additions and 2 deletions

View File

@ -0,0 +1,32 @@
From 4d34d6cfe9bd8fc7b8355a39502374d9d6426ed0 Mon Sep 17 00:00:00 2001
From: Marek Kasik <mkasik@redhat.com>
Date: Mon, 29 Nov 2021 16:27:57 +0100
Subject: [PATCH] Set alignment for rendering to default
Previous aligning to 32 bytes rendered EPS in wrong way (not always but often).
Setting default alignment which aligns to size of pointer fixes this issue.
The commit which set it to the 32 was talking about alignment of 4 bytes so I guess
that there were bits interchanged with bytes.
Fixes #44
---
libspectre/spectre-device.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libspectre/spectre-device.c b/libspectre/spectre-device.c
index 708fcb0..6959db0 100644
--- a/libspectre/spectre-device.c
+++ b/libspectre/spectre-device.c
@@ -331,7 +331,7 @@ spectre_device_render (SpectreDevice *device,
args[arg++] = dsp_format = _spectre_strdup_printf ("-dDisplayFormat=%d",
DISPLAY_COLORS_RGB |
DISPLAY_DEPTH_8 |
- DISPLAY_ROW_ALIGN_32 |
+ DISPLAY_ROW_ALIGN_DEFAULT |
#ifdef WORDS_BIGENDIAN
DISPLAY_UNUSED_FIRST |
DISPLAY_BIGENDIAN |
--
2.33.1

View File

@ -1,12 +1,14 @@
Name: libspectre
Version: 0.2.9
Release: 5%{?dist}
Release: 6%{?dist}
Summary: A library for rendering PostScript(TM) documents
License: GPLv2+
URL: http://libspectre.freedesktop.org
Source0: http://libspectre.freedesktop.org/releases/%{name}-%{version}.tar.gz
Patch0: libspectre-0.2.9-alignment.patch
BuildRequires: make
BuildRequires: gcc
%if 0%{?fedora} > 27
@ -30,7 +32,7 @@ developing applications that use %{name}.
%prep
%autosetup
%autosetup -p1
%build
@ -61,6 +63,10 @@ rm -fv %{buildroot}%{_libdir}/libspectre.la
%changelog
* Wed Dec 08 2021 Marek Kasik <mkasik@redhat.com> - 0.2.9-6
- Set alignment for rendering to default
- Resolves: #2029329
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.2.9-5
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688