diff --git a/embroideryInfo/Program.cs b/embroideryInfo/Program.cs index ad6613b..3c476dd 100644 --- a/embroideryInfo/Program.cs +++ b/embroideryInfo/Program.cs @@ -41,7 +41,7 @@ namespace embroideryInfo if (args[0] == "--image" && args.Length > 1) { PesFile.PesFile design = new PesFile.PesFile(args[1]); - Bitmap DrawArea = design.designToBitmap(5); + Bitmap DrawArea = design.designToBitmap(5, false, 0); Bitmap temp = new Bitmap(DrawArea.Width, DrawArea.Height, System.Drawing.Imaging.PixelFormat.Format24bppRgb); Graphics tempGraph = Graphics.FromImage(temp); tempGraph.FillRectangle(Brushes.White, 0, 0, temp.Width, temp.Height); diff --git a/embroideryInfo/bin/Debug/embroideryInfo.exe b/embroideryInfo/bin/Debug/embroideryInfo.exe index e8f0dee..952b86e 100644 Binary files a/embroideryInfo/bin/Debug/embroideryInfo.exe and b/embroideryInfo/bin/Debug/embroideryInfo.exe differ diff --git a/embroideryInfo/bin/Release/embroideryInfo.exe b/embroideryInfo/bin/Release/embroideryInfo.exe index 910dbf5..4956d30 100644 Binary files a/embroideryInfo/bin/Release/embroideryInfo.exe and b/embroideryInfo/bin/Release/embroideryInfo.exe differ