From 403faf82ca5eabd6f43c6a308470532f8e0f8e69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hompus?= Date: Fri, 5 Feb 2021 14:04:06 +0100 Subject: [PATCH] Better height --- Pixcel/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pixcel/Program.cs b/Pixcel/Program.cs index aa04d30..fa1118f 100644 --- a/Pixcel/Program.cs +++ b/Pixcel/Program.cs @@ -19,7 +19,7 @@ for (int x = 1; x <= bitmap.Height; x++) { - worksheet.Row(x).Height = 25; + worksheet.Row(x).Height = 27.5; worksheet.Cells[x, y].Style.Fill.PatternType = ExcelFillStyle.Solid; worksheet.Cells[x, y].Style.Fill.BackgroundColor.SetColor(bitmap.GetPixel(y - 1, x - 1)); }