Version: (using KDE KDE 3.4.0) Installed from: Gentoo Packages Compiler: g++ 3.4.3 pie, ssp, hardened gentoo profile OS: Linux I can't select text in simple documents exported from OpenOffice 2 Beta. An example is available at http://sigil.edu.ms/test.pdf. KPDF's selection context menu allows only copying text as bitmap. Text can be selected and copied in Adobe Reader 7 and in Evince, so I think that it's a bug. I can also reproduce this with snapshot from ftp://ftp.kde.org/pub/kde/unstable/snapshots/ (kdegraphics-050504.tar.bz2)
Created attachment 11030 [details] test.pdf, from which the text can't be copied
SVN commit 415187 by aacid: Call m_text->endPage() on KPDFOutputDev::endPage() when generating text Fixes bug 105630 BUGS: 105630 M +3 -0 trunk/KDE/kdegraphics/kpdf/core/generator_pdf/gp_outputdev.cpp --- trunk/KDE/kdegraphics/kpdf/core/generator_pdf/gp_outputdev.cpp #415186:415187 @@ -112,7 +112,10 @@ { SplashOutputDev::endPage(); if ( m_generateText ) + { + m_text->endPage(); m_text->coalesce( gTrue ); + } int bh = getBitmap()->getHeight(), bw = getBitmap()->getWidth();