PdfLibCore
PdfLib CORE is a fast PDF editing and reading library for modern .NET Core applications.
File Explorer
Download Latest Version (.zip)- build-validation.yml
- nuget-publish.yml
- pre-release.yml
- pullrequest-pr.yml
- icon.png
- A17_FlightPlan.pdf
- sample-10-mb.pdf
- sample-images.pdf
- DataProvider.cs
- Dockerfile
- ExampleApp.csproj
- Program.cs
- ActionTypes.cs
- BitmapFormats.cs
- DocumentPermissions.cs
- DuplexTypes.cs
- FlattenFlags.cs
- FlattenResults.cs
- FontTypes.cs
- MetadataTags.cs
- ObjectTypes.cs
- PageModes.cs
- PageObjTypes.cs
- PageOrientations.cs
- PathFillModes.cs
- RenderingFlags.cs
- RenderingStatus.cs
- SaveFlags.cs
- SearchFlags.cs
- ZoomModes.cs
- FPDF_COLOR.cs
- FPDF_ERR.cs
- FPDF_FILE_ACCESS.cs
- FPDF_IMAGEOBJ_METADATA.cs
- FPDF_LIBRARY_CONFIG.cs
- FPDF_TEXT_RENDERMODE.cs
- FPDF_TypeDef.cs
- FPDF_TypeDef.tt
- FS_MATRIX.cs
- FS_QUADPOINTSF.cs
- FS_RECTF.cs
- FS_SIZEF.cs
- IFSDK_PAUSE.cs
- IHandle.cs
- NativeWrapper.cs
- BmpStream.cs
- common.ttinclude
- PdfAction.cs
- PdfBookmark.cs
- PdfDestination.cs
- PdfDestinationCollection.cs
- PdfDocument.cs
- Pdfium.cs
- Pdfium.g.cs
- Pdfium.tt
- Pdfium.xml
- PdfiumBitmap.cs
- PdfiumException.cs
- PdfLibCore.csproj
- PdfPage.cs
- PdfPageCollection.cs
- PdfPageLocation.cs
- PdfPageRange.cs
- PinnedGCHandle.cs
- PdfiumBitmapExtensions.cs
- PdfLibCore.FreeImage.csproj
- PdfiumBitmapExtensions.cs
- PdfLibCore.ImageSharp.csproj
- PdfiumBitmapExtensions.cs
- PdfLibCore.MagickNet.csproj
- PdfiumBitmapExtensions.cs
- PdfLibCore.SkiaSharp.csproj
- test.pdf
- PdfDocumentTests.cs
- PdfLibCore.UnitTests.csproj
- PdfPageTests.cs
- PdfPageToImageTests.cs
- build_nuget.sh
- get_pdfium.sh
- .gitignore
- .travis.yml
- LICENSE.txt
- PdfLibCore.sln
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/jbaarssen/PdfLibCore
Downloads the entire project code from GitHub to your computer.
cd PdfLibCore
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f src/ExampleApp/Dockerfile -t pdflibcore .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 pdflibcore
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. .NET
MediumPrerequisites
dotnet restore
Downloads the packages the project depends on.
dotnet run
Builds the project and runs it immediately.
After dotnet run, check the message or address shown in the terminal.
// repository documentation
Was this content helpful?
(0 ratings)
