[Bug 1154318] Re: pdftopdf assert failure: EPSON-Epson-Stylus-SX430: filter/pdftopdf/qpdf_pdftopdf.cc:34: Rotation getRotate(QPDFObjectHandle): Assertion `rot==0.0' failed.

2013-03-21 Thread Launchpad Bug Tracker
This bug was fixed in the package cups-filters - 1.0.31-0ubuntu1 --- cups-filters (1.0.31-0ubuntu1) raring; urgency=low * New upstream release - cups-browsed: cups-browsed removed valid local queues pointing to remote queues when cups-browsed did not shut down cleanly

[Bug 1154318] Re: pdftopdf assert failure: EPSON-Epson-Stylus-SX430: filter/pdftopdf/qpdf_pdftopdf.cc:34: Rotation getRotate(QPDFObjectHandle): Assertion `rot==0.0' failed.

2013-03-14 Thread Carlen Deyanira Rodriguez Rangel
** Information type changed from Private to Public -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1154318 Title: pdftopdf assert failure: EPSON-Epson-Stylus-SX430:

[Bug 1154318] Re: pdftopdf assert failure: EPSON-Epson-Stylus-SX430: filter/pdftopdf/qpdf_pdftopdf.cc:34: Rotation getRotate(QPDFObjectHandle): Assertion `rot==0.0' failed.

2013-03-14 Thread Tobias Hoffmann
The assert triggers because the PDF to be processed contains a /Rotation key which is not equal to 0, 90, 180 or 270. Basically there are three possibilities: 1) The pdf uses a value not allowed by the pdf specification. 2) The value is close, but not exactly equal to one of the above rotation

[Bug 1154318] Re: pdftopdf assert failure: EPSON-Epson-Stylus-SX430: filter/pdftopdf/qpdf_pdftopdf.cc:34: Rotation getRotate(QPDFObjectHandle): Assertion `rot==0.0' failed.

2013-03-14 Thread Till Kamppeter
In general there should not be an assert getting triggered by a PDF file not conforming to the specs, but a way to gracefully error out. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1154318 Title:

[Bug 1154318] Re: pdftopdf assert failure: EPSON-Epson-Stylus-SX430: filter/pdftopdf/qpdf_pdftopdf.cc:34: Rotation getRotate(QPDFObjectHandle): Assertion `rot==0.0' failed.

2013-03-14 Thread Tobias Hoffmann
Sure, there should not... and when compiled with -DNDEBUG it actually would not exit, but just assume 0.0 degrees rotation... The assert basically was there, because this particular function only implemented the simple cases (taking care of nearly all pdfs in the wild) and was not touched since