As a quick workaround for output of floating point values (in SVN Head):

Index: src/PdfVariant.cpp
===================================================================
--- src/PdfVariant.cpp  (révision 887)
+++ src/PdfVariant.cpp  (copie de travail)
@@ -230,7 +230,7 @@
             // Use ostringstream, so that locale does not matter
             std::ostringstream oss;
             PdfLocaleImbue(oss);
-            oss << m_Data.dNumber;
+           oss << std::fixed << m_Data.dNumber;

             pDevice->Write( oss.str().c_str(), oss.str().size() );
             break;


I don’t know at all if it can be seen as a fix but at least it worked here 
(opensuse 10.3).

-- 
Pierre Marchand

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Podofo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/podofo-users

Reply via email to