PoDoFo Changelog

What's new in PoDoFo 0.9.3

Jul 8, 2014
  • GetFont() functions have one more argument, bool bIsSymbolCharset, which was added before the encoding, thus adapt your code accordingly.
  • Drawing API changed, currently a path to draw is defined first, then it can be Stroke, Fill, StrokeAndFill or Clip. Changes on PdfPainter/MM which should be done for new API are:
  • replace DrawRect() with call of Rectangle(); Stroke();
  • replace FillRect() with call of Rectangle(); Fill();
  • similarly for other dropped functions
  • PdfError doesn't derive from std::exception anymore, catch for (PdfError &e) instead.