2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

C# Excelをイメージに変換

Posted at

Spire.XLSという無料のライブラリを活用して、エクセルファイルをJPEG、PNG、 BMP、 WMF、EMF 及びTIFFに変換できます。閑話休題、今回はちょっとやってあげましょう。

下準備

1.E-iceblueの公式サイトからFree Spire.XLS無料版をダウンロードしてください。

f:id:lendoris:20210707122528p:plain

 2.Visual Studioを起動して新規プロジェクトを作成してから、インストールされたファイルにあった相応しいSpire.XLS.dllを参照に追加してください。

(Net 4.0を例としたら、デフォルトパスは“Bin→NET4.0→XLS.dll”というようです。)

f:id:lendoris:20210707122543p:plain

```C# using System.Drawing.Imaging; using Spire.Xls;

namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
//workbookオブジェクトを作成します。
Workbook workbook = new Workbook();

        //Excelをロードします。
        workbook.LoadFromFile("Sample.xlsx");

        //シートを取得します。
        Worksheet sheet = workbook.Worksheets[0];

        //イメージで保存します。
        sheet.SaveToImage("ExceltoImage.png", ImageFormat.Png);
    }
}

}

<h4> <strong>実行結果</strong></h4>
<p><img src="https://cdn-ak.f.st-hatena.com/images/fotolife/l/lendoris/20210707/20210707122620.png" alt="f:id:lendoris:20210707122620p:plain" width="554" height="278" loading="lazy" title="" class="hatena-fotolife" itemprop="image" /></p>
<p> </p>
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?