Skip to content

Commit

Permalink
Update DicomFileRunner.cs
Browse files Browse the repository at this point in the history
Update for ImageMagick 14.0 API changes
  • Loading branch information
jas88 committed Sep 10, 2024
1 parent f609995 commit 2be32e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IsIdentifiable/Runners/DicomFileRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,8 @@ void ValidateDicomPixelData(IFileInfo fi, DicomFile dicomFile, DicomDataset ds,
MagickReadSettings msett = new()
{
ColorType = ColorType.Grayscale,
Width = overlay.Columns,
Height = overlay.Rows,
Width = (uint?)overlay.Columns,
Height = (uint?)overlay.Rows,
Depth = 8,
Format = MagickFormat.Gray
};
Expand Down

0 comments on commit 2be32e2

Please sign in to comment.