diff --git a/.vs/MagickUtils/v16/.suo b/.vs/MagickUtils/v16/.suo index 0bce07e..3e106b4 100644 Binary files a/.vs/MagickUtils/v16/.suo and b/.vs/MagickUtils/v16/.suo differ diff --git a/Program.cs b/Program.cs index 0affc0e..920d2b6 100644 --- a/Program.cs +++ b/Program.cs @@ -34,7 +34,11 @@ static void Main (string[] args) if(args.Length > 0 && args[0] != null && File.Exists(args[0])) { - PreviewImage(args[0], true); + try + { + PreviewImage(args[0], true); + } + catch { } } else { diff --git a/bin/Debug/MagickUtils.exe b/bin/Debug/MagickUtils.exe index de6d935..a4eaf0c 100644 Binary files a/bin/Debug/MagickUtils.exe and b/bin/Debug/MagickUtils.exe differ diff --git a/bin/Debug/MagickUtils.pdb b/bin/Debug/MagickUtils.pdb index bfbf2b0..fe8e10a 100644 Binary files a/bin/Debug/MagickUtils.pdb and b/bin/Debug/MagickUtils.pdb differ diff --git a/obj/Debug/MagickUtils.exe b/obj/Debug/MagickUtils.exe index de6d935..a4eaf0c 100644 Binary files a/obj/Debug/MagickUtils.exe and b/obj/Debug/MagickUtils.exe differ diff --git a/obj/Debug/MagickUtils.pdb b/obj/Debug/MagickUtils.pdb index bfbf2b0..fe8e10a 100644 Binary files a/obj/Debug/MagickUtils.pdb and b/obj/Debug/MagickUtils.pdb differ