使用畫素單位設定 EXCEL 列寬或行高

匡匡發表於2018-11-23

在匯出 Excel 的時候, 經常要需要給列設定寬度或給行設定高度, 在使用 NPOI 或 EppPlus 等元件進行操作的時候, 列寬和行高的單位都不是畫素, 好像是英寸,具體是啥也說不清。

平常在使用單位時, 已經習慣使用畫素了, 所以希望在 EXCEL 裡設定列寬或行高時也使用畫素。

 

之前在使用 Aspose.Cells 時, 發現這個元件有個 SetRowHeightPixel 方法, 可以使用畫素設定行高, 於是使用反編譯看了一下實現原理:

 

private static float GetDpiX()
{
    try
    {
        using (Bitmap image = new Bitmap(1, 1))
        {
            using (Graphics graphics = Graphics.FromImage(image))
            {
                return graphics.DpiX;
            }
        }
    }
    catch
    {
        return 72;
    }
}


public void SetRowHeightPixel(int row, int pixels)
{
    double height = (double)((float)pixels * 72f / (float)GetDpiX());
    this.SetRowHeight(row, height);
}

 

相關文章