Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
BobLd authored Sep 21, 2020
1 parent 4285cfb commit ba408c5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ Port of [tabula-java](https://github.com/tabulapdf/tabula-java)
![Linux](https://github.com/BobLd/tabula-sharp/workflows/Linux/badge.svg)
![Mac OS](https://github.com/BobLd/tabula-sharp/workflows/Mac%20OS/badge.svg)

Supports .NET Core 3.1; .NET Standard 2.0; .NET Framework 4.5, 4.51, 4.52, 4.6, 4.61, 4.62, 4.7
- Supports .NET Core 3.1; .NET Standard 2.0; .NET Framework 4.5, 4.51, 4.52, 4.6, 4.61, 4.62, 4.7
- No java bindings

## Difference to tabula-java
- Uses [PdfPig](https://github.com/UglyToad/PdfPig), and not PdfBox.
- Coordinate system starts from the bottom left point of the page, and not from the top left point.
- The `NurminenDetectionAlgorithm` is not yet implemented, because it requieres an image management library.
- Table results might be different because of the way PdfPig builds Letter bounding box.

# Usage
## Stream mode - BasicExtractionAlgorithm
Expand Down Expand Up @@ -37,6 +44,3 @@ using (PdfDocument document = PdfDocument.Open("doc.pdf", new ParsingOptions() {
var rows = table.Rows;
}
```

**TO DO**
- image library not available in dotnet core - `NurminenDetectionAlgorithm`

0 comments on commit ba408c5

Please sign in to comment.