Skip to content

Commit 71aa850

Browse files
committed
new KB - Converting PDF to TIFF with RadPdfProcessing in .NET Standard
1 parent 03c19da commit 71aa850

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

knowledge-base/convert-pdf-to-multipage-tiff-radpdfprocessing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ private static void Main(string[] args)
9090
- [TiffBitmapEncoder Class Documentation](https://docs.microsoft.com/en-us/dotnet/api/system.windows.media.imaging.tiffbitmapencoder)
9191
- [Using SkiaImageFormatProvider]({%slug radpdfprocessing-formats-and-conversion-image-using-skiaimageformatprovider%})
9292
- [Converting Multi-page TIFF Images to PDF]({%slug convert-tiff-to-pdf-radpdfprocessing%})
93+
- [Converting PDF to TIFF with RadPdfProcessing in .NET Standard]({%slug convert-pdf-to-tiff-radpdfprocessing-net-core%})

knowledge-base/convert-pdf-to-tiff-radpdfprocessing-net-core.md

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Converting PDF to TIFF with RadPdfProcessing in .NET Core Applications
3-
description: This article demonstrates how to convert PDF documents to TIFF images in .NET Core applications using RadPdfProcessing.
2+
title: Converting PDF to TIFF with RadPdfProcessing in .NET Standard
3+
description: This article demonstrates how to convert PDF documents to TIFF images in .NET Standard applications using RadPdfProcessing.
44
type: how-to
5-
page_title: How to Convert PDF Documents to TIFF Images Using RadPdfProcessing in .NET Core
5+
page_title: How to Convert PDF Documents to TIFF Images Using RadPdfProcessing in .NET Standard
66
slug: convert-pdf-to-tiff-radpdfprocessing-net-core
7-
tags: radpdfprocessing, document processing, pdf, tiff, conversion, .net core, asp.net core
7+
tags: radpdfprocessing, document, processing, pdf, tiff, conversion, net, standard
88
res_type: kb
99
ticketid: 1682497
1010
---
@@ -17,19 +17,14 @@ ticketid: 1682497
1717

1818
## Description
1919

20-
I need to convert PDFs to TIFFs in a .NET 8 ASP.NET Core application. The existing solutions seem to target the .NET Framework, causing compatibility issues. How can I achieve this conversion using RadPdfProcessing in my application?
21-
22-
This knowledge base article also answers the following questions:
23-
- How do I convert PDF documents to TIFF format in a .NET Core application?
24-
- What is the process for exporting PDF pages as images in .NET Core?
25-
- Can I generate a multipage TIFF image from a PDF document using RadPdfProcessing in ASP.NET Core?
20+
Learn how to convert PDF documents to TIFF format in .NET Standard.
2621

2722
## Solution
2823

29-
To convert PDF documents to TIFF images in a .NET Core application, follow these steps:
24+
To convert PDF documents to TIFF images in .NET Standard, follow these steps:
3025

31-
1. Use the `SkiaImageFormatProvider` to export the PDF pages to images.
32-
2. Utilize the `System.Drawing.Common` library to assemble these images into a multipage TIFF file.
26+
1. Use the [SkiaImageFormatProvider]({%slug radpdfprocessing-formats-and-conversion-image-using-skiaimageformatprovider%}) to export the PDF pages to images.
27+
2. Utilize the [System.Drawing.Common](https://www.nuget.org/packages/System.Drawing.Common/) library to assemble these images into a multi-page TIFF file.
3328

3429
Here's an example code snippet demonstrating the process:
3530

@@ -112,8 +107,5 @@ Replace `"your-pdf-file.pdf"` with the path to your PDF file. This code will cre
112107

113108
## See Also
114109

115-
- [RadPdfProcessing Overview](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/overview)
116-
- [Using Image Format Provider](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/formats-and-conversion/convert-to-image/using-image-format-provider)
117-
- [PdfProcessing: Add support for converting a PDF document to a multipage TIFF image](https://feedback.telerik.com/document-processing/1660559-pdfprocessing-add-support-for-converting-a-pdf-document-to-a-multipage-tiff-image)
110+
- [Converting a PDF Document to a Multipage TIFF Image]({%slug convert-pdf-to-multipage-tiff-radpdfprocessing%})
118111

119-
---

0 commit comments

Comments
 (0)