| Summary: | Incorrect, incomplte render of two column pdf documents | ||
|---|---|---|---|
| Product: | [Unmaintained] kpdf | Reporter: | M S <inostihom> |
| Component: | general | Assignee: | Albert Astals Cid <aacid> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | pierre.lambion, reyvasri51 |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
The pdf file which does not render correctly
Screenshot of correct rendering Screenshot of kpdf rendering |
||
|
Description
M S
2005-08-05 01:57:03 UTC
Created attachment 12083 [details]
The pdf file which does not render correctly
The two column pdf file which does not render correctly. The one column version
renders perfectly
Created attachment 12084 [details]
Screenshot of correct rendering
Created attachment 12085 [details]
Screenshot of kpdf rendering
I can reproduce this. SVN commit 450335 by aacid:
Disable zlib based decoder from poppler as it cause bugs
BUGS: 110199
M +1 -1 Makefile.am
M +1 -2 Stream.cc
M +1 -1 Stream.h
--- branches/KDE/3.4/kdegraphics/kpdf/xpdf/xpdf/Makefile.am #450334:450335
@@ -4,7 +4,7 @@
libxpdf_la_LIBADD = $(LIB_X11) $(LIBFREETYPE_LIBS) $(LIBPAPER_LIBS) $(XFT_LIBS) $(LIBJPEG) ../goo/libgoo.la ../fofi/libfofi.la ../splash/libsplash.la
libxpdf_la_SOURCES = Annot.cc Array.cc BuiltinFont.cc BuiltinFontTables.cc \
Catalog.cc CharCodeToUnicode.cc CMap.cc Decrypt.cc Dict.cc DCTStream.cc \
- FontEncodingTables.cc FlateStream.cc Function.cc Gfx.cc \
+ FontEncodingTables.cc Function.cc Gfx.cc \
GfxFont.cc GfxState.cc GlobalParams.cc JArithmeticDecoder.cc \
JBIG2Stream.cc Lexer.cc Link.cc NameToCharCode.cc Object.cc Outline.cc \
OutputDev.cc PDFDoc.cc PDFDocEncoding.cc PSTokenizer.cc \
--- branches/KDE/3.4/kdegraphics/kpdf/xpdf/xpdf/Stream.cc #450334:450335
@@ -33,7 +33,6 @@
#include "JPXStream.h"
#include "Stream-CCITT.h"
#include "DCTStream.h"
-#include "FlateStream.h"
#ifdef __DJGPP__
static GBool setDJSYSFLAGS = gFalse;
@@ -3179,6 +3178,7 @@
GBool DCTStream::isBinary(GBool /*last*/) {
return str->isBinary(gTrue);
}
+#endif
//------------------------------------------------------------------------
// FlateStream
@@ -3710,7 +3710,6 @@
codeSize -= bits;
return c;
}
-#endif
//------------------------------------------------------------------------
// EOFStream
--- branches/KDE/3.4/kdegraphics/kpdf/xpdf/xpdf/Stream.h #450334:450335
@@ -637,6 +637,7 @@
int readMarker();
int read16();
};
+#endif
//------------------------------------------------------------------------
// FlateStream
@@ -712,7 +713,6 @@
int getHuffmanCodeWord(FlateHuffmanTab *tab);
int getCodeWord(int bits);
};
-#endif
//------------------------------------------------------------------------
// EOFStream
*** Bug 111156 has been marked as a duplicate of this bug. *** *** Removed by KDE Sysadmin due to violation of abuse policies *** *** Removed by KDE Sysadmin due to violation of abuse policies *** |