We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7667e19 commit 2eb00ebCopy full SHA for 2eb00eb
libraries/radpdfprocessing/cross-platform/images.md
@@ -73,8 +73,8 @@ The following example depends on the [Magick.NET](https://www.nuget.org/packages
73
{
74
public override bool TryConvertToJpegImageData(byte[] imageData, ImageQuality imageQuality, out byte[] jpegImageData)
75
76
- MagickFormatInfo formatInfo = MagickFormatInfo.Create(imageData);
77
- if (formatInfo != null && formatInfo.IsReadable)
+ IMagickFormatInfo? formatInfo = MagickFormatInfo.Create(imageData);
+ if (formatInfo != null && formatInfo.SupportsReading)
78
79
using (MagickImage magickImage = new MagickImage(imageData))
80
0 commit comments