diff --git a/PDP-to-PNG-Q16/Program.cs b/PDP-to-PNG-Q16/Program.cs index d9b86b6..80588ff 100644 --- a/PDP-to-PNG-Q16/Program.cs +++ b/PDP-to-PNG-Q16/Program.cs @@ -28,6 +28,9 @@ public static void Main() // Select the current page using (MagickImage image = (MagickImage)images[i]) { + // Set the image size to 1200x1800 pixels (4x6 inches at 300 DPI) + image.Resize(1200, 1800); + // set quality of the PNG output image.Quality = 100;