You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ms...@apache.org on 2015/10/18 16:21:38 UTC

svn commit: r1709283 - /pdfbox/cmssite/trunk/content/2.0/migration.md

Author: msahyoun
Date: Sun Oct 18 14:21:38 2015
New Revision: 1709283

URL: http://svn.apache.org/viewvc?rev=1709283&view=rev
Log:
PDFBOX-3030: fix lists

Modified:
    pdfbox/cmssite/trunk/content/2.0/migration.md

Modified: pdfbox/cmssite/trunk/content/2.0/migration.md
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/trunk/content/2.0/migration.md?rev=1709283&r1=1709282&r2=1709283&view=diff
==============================================================================
--- pdfbox/cmssite/trunk/content/2.0/migration.md (original)
+++ pdfbox/cmssite/trunk/content/2.0/migration.md Sun Oct 18 14:21:38 2015
@@ -24,6 +24,7 @@ Most deprecated API calls in PDFBox 1.8.
 
 ### API Changes
 The API changes are reflected in the Javadoc for PDFBox 2.0.0. The most notable changes are:
+
 - `getCOSDictionary()` is no longer used. Instead `getCOSObject` now returns the matching `COSBase` subtype.
 - `PDXObjectForm` was renamed to `PDFormXObject` to be more in line with the PDF specification.
 - `PDXObjectImage` was renamed to `PDImageXObject` to be more in line with the PDF specification.
@@ -52,6 +53,7 @@ and so on. The `add` method now supports
 The individual classes `PDJpeg()`, `PDPixelMap()` and `PDCCitt()` to import images have been replaced with `PDImageXObject.createFromFile` which works for JPG, TIFF (only G4 compression), PNG, BMP and GIF.
 
 In addition there are some specialized classes:
+
 - `JPEGFactory.createFromStream` which preserve the JPEG data and embed it in the PDF file without modification. (This is best if you have a JPEG file).
 - `CCITTFactory.createFromFile` (for bitonal TIFF images with G4 compression).
 - `LosslessFactory.createFromImage` (this is best if you start with a BufferedImage).