If the target framework is .NET 6 or over, due to limitations in the System.Drawing.Common version 6.0.0 (see Microsoft documentation), you need to add the following setting to the .csproj file.
When using GroupDocs.Comparison in a non-Windows environment, the following packages should be installed to improve rendering results and prevent possible runtime errors:
libgdiplus - is the Mono library that provides a GDI+-compatible API on non-Windows operating systems.
ttf-mscorefonts-installer - package with Microsoft compatible fonts, because GroupDocs.Comparison uses Aril font in the some default scenarios.
To install packages on Debian-based Linux distributions use apt-get utility:
sudo apt-get install libgdiplus
sudo apt-get install ttf-mscorefonts-installer
How to run in the Docker
Running GroupDocs.Comparison in Docker is straightforward. All you need to do is add the installation of the packages described in the previous paragraph to the docker file.
.NET 6 in Docker
An example beginning of the Dockerfile might look like this:
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS baseWORKDIR /appEXPOSE 80# Add libgdiplus for graphics supportRUN apt-get update && apt-get install -y apt-utils libgdiplus# Add `contrib` archive area to package sources listRUN sed -i'.bak''s/$/ contrib/' /etc/apt/sources.list# Add fontsRUN apt-get update; apt-get install -y ttf-mscorefonts-installer fontconfigRUN fc-cache -f -vFROM mcr.microsoft.com/dotnet/sdk:6.0 AS build# etc
fontconfig: This library configures and customizes font access.
ttf-mscorefonts-installer: This package provides Microsoft TrueType core fonts. It’s available in the contrib archive area. (Note: Using non-free fonts may have licensing implications, so be sure to check the license terms.)
.NET 8 in Docker
In the .NET 8 Dockerfile, there are some changes in the way ttf-mscorefonts-installer is installed.
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS baseWORKDIR /appEXPOSE 8080# Add libgdiplus for graphics supportRUN apt-get update && apt-get install -y libgdiplusRUN apt install software-properties-common -yRUNecho"deb http://deb.debian.org/debian bookworm contrib non-free" > /etc/apt/sources.list.d/contrib.listRUN apt update && apt upgrade# Add fontsRUN apt install ttf-mscorefonts-installer -y# This stage is used to build the service projectFROM mcr.microsoft.com/dotnet/sdk:8.0 AS build# etc
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.
On this page
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.