[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#170384: marked as forwarded (tetex-bin: epstopdf 'corrects' bounding box too small)



Your message dated Tue, 5 Aug 2003 20:54:05 +0200
with message-id <20030805185405.GD27263@preusse-16223.user.cis.dfn.de>
has caused the Debian Bug report #170384,
regarding tetex-bin: epstopdf 'corrects' bounding box too small
to be marked as having been forwarded to the upstream software
author(s) 170384-forwarded@bugs.debian.org, Heiko Oberdiek <oberdiek@uni-freiburg.de>.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

---------------------------------------
Received: (at 170384-forwarded) by bugs.debian.org; 5 Aug 2003 18:56:02 +0000
>From hille42@web.de Tue Aug 05 13:55:59 2003
Return-path: <hille42@web.de>
Received: from smtp03.web.de (smtp.web.de) [217.72.192.158] 
	by master.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 19k6yV-0007IP-00; Tue, 05 Aug 2003 13:55:59 -0500
Received: from [213.6.224.133] (helo=preusse-16223.user.cis.dfn.de)
	by smtp.web.de with asmtp (WEB.DE 4.99 #433)
	id 19k6yS-0000mA-00; Tue, 05 Aug 2003 20:55:58 +0200
Received: by preusse-16223.user.cis.dfn.de (Postfix, from userid 1000)
	id 8F4D04771; Tue,  5 Aug 2003 20:54:05 +0200 (CEST)
Date: Tue, 5 Aug 2003 20:54:05 +0200
From: Hilmar Preusse <hille42@web.de>
To: 170384-forwarded@bugs.debian.org,
	Heiko Oberdiek <oberdiek@uni-freiburg.de>
Subject: (fwd) tetex-bin: epstopdf 'corrects' bounding box too small
Message-ID: <20030805185405.GD27263@preusse-16223.user.cis.dfn.de>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Organization: Hilmar Preusse Inc.
X-Uptime: 20:32:06 up 4 days,  1:16,  4 users,  load average: 1.10, 1.10, 1.04
X-Operating-System: Linux 2.4.21 i686
X-www.distributed.net: OGR: 6 packets (779.11 stats units) [2.38 Mnodes/s]
X-Confirmation-Request: yes
X-Confirm-Reading-To: "Hilmar Preusse" <hille42@web.de>
Sender: hille42@web.de
Delivered-To: 170384-forwarded@bugs.debian.org
X-Spam-Status: No, hits=-13.1 required=4.0
	tests=BAYES_10,FROM_ENDS_IN_NUMS,HAS_PACKAGE,PATCH_UNIFIED_DIFF,
	      USER_AGENT_MUTT
	autolearn=ham version=2.53-bugs.debian.org_2003_07_20
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_07_20 (1.174.2.15-2003-03-30-exp)

last time,

http://bugs.debian.org/170384

Could we have a small statement about that bug?

Hilmar
----- Forwarded message from Tommi Komulainen <tommi.komulainen@iki.fi> -----

From: Tommi Komulainen <tommi.komulainen@iki.fi>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: tetex-bin: epstopdf 'corrects' bounding box too small
Date: Sat, 23 Nov 2002 14:02:45 +0200
Message-ID: <20021123120244.GA21459@jt5-223b.tky.hut.fi>
User-Agent: Mutt/1.4i

Package: tetex-bin
Version: 1.0.7+20021025-3
Severity: minor
Tags: patch

The epstopdf script 'corrects' the bounding box one point too narrow and
too short.  This makes lines that are right at the edge of the bounding
box simply disappear from the pdf.

It's a simple off-by-one error, patch attached.

-- 
Tommi Komulainen                                 tommi.komulainen@iki.fi
GPG 1024D/68388EE6    6FD6 DD79 EB38 BF6F 3533  09C0 04A8 9871 6838 8EE6

--- /usr/bin/epstopdf	2002-11-20 08:18:50.000000000 +0200
+++ epstopdf	2002-11-23 13:54:27.000000000 +0200
@@ -210,7 +210,7 @@
 sub CorrectBoundingBox {
   my ($llx, $lly, $urx, $ury) = @_;
   debug "Old BoundingBox:", $llx, $lly, $urx, $ury;
-  my ($width, $height) = ($urx - $llx, $ury - $lly);
+  my ($width, $height) = ($urx - $llx + 1, $ury - $lly + 1);
   my ($xoffset, $yoffset) = (-$llx, -$lly);
   debug "New BoundingBox: 0 0", $width, $height;
   debug "Offset:", $xoffset, $yoffset;

----- End forwarded message -----

-- 
sigmentation fault



Reply to: