|
From: | anonymous |
Subject: | [bug #58206] [PATCH] fix PDFPIC issue with determining size of pdfs containing images |
Date: | Mon, 20 Apr 2020 22:34:03 -0400 (EDT) |
User-agent: | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.14.2 Chrome/77.0.3865.129 Safari/537.36 |
Follow-up Comment #4, bug #58206 (project groff): Ok so a work around I used was to use tr's -d flag to remove the NULL sections from the output from pdfinfo. As far as I know this should be available to all systems. Another option is to use cat -v but I don't think that is POSIX complaint. Here is the diff diff --git a/tmac/pdfpic.tmac b/tmac/pdfpic.tmac index 0400c1cf..3dae30be 100644 --- a/tmac/pdfpic.tmac +++ b/tmac/pdfpic.tmac @@ -84,6 +84,7 @@ .\" get image dimensions . ec @ . sy pdfinfo @$1 | \ +tr -d '\000' | \ grep "Page *size" | \ sed -e 's/Page *size: *\\([[:digit:].]*\\) *x *\\([[:digit:].]*\\).*$/\ .nr pdf-wid (p;\\1)\\n\ (file #48890) _______________________________________________________ Additional Item Attachment: File name: trversion.diff Size:0 KB <https://savannah.gnu.org/file/trversion.diff?file_id=48890> _______________________________________________________ Reply to this item at: <https://savannah.gnu.org/bugs/?58206> _______________________________________________ Message sent via Savannah https://savannah.gnu.org/
[Prev in Thread] | Current Thread | [Next in Thread] |