change the project name to something silly

This commit is contained in:
Eliot Jones
2018-01-10 19:49:32 +00:00
parent ab5a357665
commit ec62542b64
485 changed files with 946 additions and 784 deletions

View File

@@ -1,4 +1,4 @@
# UglyToad.Pdf #
# PdfPig #
[![Build status](https://ci.appveyor.com/api/projects/status/ni7et2j2ml60pdi3?svg=true)](https://ci.appveyor.com/project/EliotJones/pdf)
[![codecov](https://codecov.io/gh/UglyToad/Pdf/branch/master/graph/badge.svg)](https://codecov.io/gh/UglyToad/Pdf)
@@ -11,8 +11,8 @@ This project aims to port [PDFBox](https://github.com/apache/pdfbox) to C#.
The ```PdfDocument``` class provides access to the contents of a document loaded either from file or passed in as bytes. To open from a file use the ```PdfDocument.Open``` static method:
using UglyToad.Pdf;
using UglyToad.Pdf.Content;
using UglyToad.PdfPig;
using UglyToad.PdfPig.Content;
using (PdfDocument document = PdfDocument.Open(@"C:\my-file.pdf"))
{