New to Telerik Document ProcessingStart a free 30-day trial

Cross-Platform Support

Updated on Jun 16, 2026

Telerik Document Processing comes with .NET Core & .NET Standard support. There is a set of packages built against .NET Core & .NET Standard which you can reference in an application.

The binaries compatible with .NET Standard are distributed with the packages targeting .NET Standard and .NET Core. You can get the packages through the UI for ASP.NET Core, UI for Blazor, and UI for WinUI suites. There are NuGet packages as well that you can access if you have a license for one of the suites mentioned previously.

Package References

To use the model of the RadWordsProcessing library in your cross-platform project, add references to the following .NET Standard packages:

.NET Standard-compatibleAdditional information
Telerik.Documents.Core
Telerik.Documents.Flow
Telerik.Documents.Flow.FormatProviders.DocRequired when importing from DOC or DOT files.
Telerik.Documents.Flow.FormatProviders.PdfRequired when exporting to PDF.
Telerik.Documents.FixedRequired when exporting to PDF.
Telerik.Documents.ImageUtils Required when exporting to PDF format a document containing images different than Jpeg and Jpeg2000 or ImageQuality different than High.

The Telerik.Documents.ImageUtils package depends on SkiaSharp. To use this package, you need to add a reference to SkiaSharp. With the R2 2023 changes SkiaSharp replaced ImageSharp as the required dependency.

For .NET Framework & .NET Core with Windows Compatibility Pack projects, the references contain "Windows" in their names (for example, Telerik.Windows.Documents.Core).

Limitations in .NET Standard

Additional Settings Required

Some features require additional settings:

  • To export to PDF format documents containing fonts different than the Standard Fonts, set the FontsProvider property inside the FixedExtensibilityManager. For more information, see the FixedExtensibilityManager in the PdfProcessing Cross-Platform Support.
  • To export to PDF format documents containing images different than Jpeg and Jpeg2000 or ImageQuality different than High, set the JpegImageConverter property inside the FixedExtensibilityManager. For more information, see the FixedExtensibilityManager in the PdfProcessing Cross-Platform Support.

Limitations in Windows Server

Additional Settings Required

When importing HTML with images that are not included in the file and need to be loaded:

See Also