{"id":18982659,"url":"https://github.com/bezzad/pdfiumviewer","last_synced_at":"2025-04-05T12:06:19.353Z","repository":{"id":38281308,"uuid":"268852818","full_name":"bezzad/PdfiumViewer","owner":"bezzad","description":"PDF viewer based on Google's PDFium port to .Net Core.","archived":false,"fork":false,"pushed_at":"2024-06-10T08:14:43.000Z","size":1665,"stargazers_count":142,"open_issues_count":17,"forks_count":50,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-29T11:06:46.901Z","etag":null,"topics":["chrome-pdf","dotnet-core","google-pdf-viewer","pdf-viewer","pdfium","wpf-controls"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bezzad.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-02T16:30:30.000Z","updated_at":"2025-02-27T02:25:28.000Z","dependencies_parsed_at":"2024-11-23T02:01:10.233Z","dependency_job_id":"0adc5715-dfe1-40bc-b6b8-03941473689f","html_url":"https://github.com/bezzad/PdfiumViewer","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bezzad%2FPdfiumViewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bezzad%2FPdfiumViewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bezzad%2FPdfiumViewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bezzad%2FPdfiumViewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bezzad","download_url":"https://codeload.github.com/bezzad/PdfiumViewer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332604,"owners_count":20921853,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chrome-pdf","dotnet-core","google-pdf-viewer","pdf-viewer","pdfium","wpf-controls"],"created_at":"2024-11-08T16:14:18.707Z","updated_at":"2025-04-05T12:06:19.332Z","avatar_url":"https://github.com/bezzad.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![NuGet](https://img.shields.io/nuget/dt/PdfiumViewer.WPF.svg)](https://www.nuget.org/packages/PdfiumViewer.WPF) \n[![NuGet](https://img.shields.io/nuget/vpre/PdfiumViewer.WPF.svg)](https://www.nuget.org/packages/PdfiumViewer.WPF)\n\n# PdfiumViewer\n\nApache 2.0 License.\n\n\u003e Note: this is a .Net Core WPF port of [PdfiumViewer](https://github.com/pvginkel/PdfiumViewer)\n\n\n[Download from NuGet](http://nuget.org/packages/PdfiumViewer.WPF).\n\n[Download Portabl PdfiumViewer WPF Demo](https://drive.google.com/file/d/1Y-KmnIeV1JKZDK6igNk0E8-OqoeziDlw/view?usp=sharing)\n\n![PdfiumViewer.WPF](https://raw.githubusercontent.com/bezzad/PdfiumViewer/master/screenshot.png)\n\n![PdfiumViewer.WPF](https://raw.githubusercontent.com/bezzad/PdfiumViewer/master/screenshot2.png)\n\n![PdfiumViewer.WPF](https://raw.githubusercontent.com/bezzad/PdfiumViewer/master/screenshot3.png)\n\n## Introduction\n\nPdfiumViewer is a PDF viewer based on the PDFium project.\n\nPdfiumViewer provides a number of components to work with PDF files:\n\n* PdfDocument is the base class used to render PDF documents;\n\n* PdfRenderer is a WPF control that can render a PdfDocument;\n\n\u003e Note: If you want to use that in WinForms, please use the main project from [PdfiumViewer WinForm](https://github.com/pvginkel/PdfiumViewer)\n\n## Compatibility\n\nThe PdfiumViewer library has been tested with Windows XP and Windows 8, and\nis fully compatible with both. However, the native PDFium libraries with V8\nsupport do not support Windows XP. See below for instructions on how to\nreference the native libraries.\n\n## Using the library\n\nThe PdfiumViewer control requires native PDFium libraries. These are not included\nin the PdfiumViewer NuGet package. See the [Installation instructions](https://github.com/pvginkel/PdfiumViewer/wiki/Installation-instructions)\nWiki page for more information on how to add these.\n\n## Note on the `PdfViewer` control\n\nThe PdfiumViewer library primarily consists out of three components:\n\n* The `PdfRenderer` control. This control implements the raw PDF renderer.\n  This control displays a PDF document, provides zooming and scrolling\n  functionality and exposes methods to perform more advanced actions;\n* The `PdfDocument` class provides access to the PDF document and wraps\n  the Pdfium library.\n\n## Building PDFium\n\nInstructions to build the PDFium library can be found on the [Building PDFium](https://github.com/pvginkel/PdfiumViewer/wiki/Building-PDFium)\nwiki page. However, if you are just looking to use the PdfiumViewer component\nor looking for a compiled version of PDFium, these steps are not required.\nNuGet packages with precompiled PDFium libraries are made available for\nusage with PdfiumViewer. See the chapter on **Using the library** for more\ninformation.\n\nAlternatively, the [PdfiumBuild](https://github.com/pvginkel/PdfiumBuild) project\nis provided to automate building PDFium. This project contains scripts to\nbuild PdfiumViewer specific versions of the PDFium library. This project\nis configured on a build server to compile PDFium daily. Please refer to\nthe [PdfiumBuild](https://github.com/pvginkel/PdfiumBuild) project page\nfor the location of the output of the build server. The PdfiumViewer specific\nlibraries are located in the `PdfiumViewer-...` target directories.\n\n## Bugs\n\nBugs should be reported through github at [http://github.com/bezzad/PdfiumViewer/issues](http://github.com/bezzad/PdfiumViewer/issues).\n\n## License\n\nPdfiumViewer is licensed under the Apache 2.0 license. See the license details for how PDFium is licensed.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbezzad%2Fpdfiumviewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbezzad%2Fpdfiumviewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbezzad%2Fpdfiumviewer/lists"}