PHPでWorksheetを画像に変換

Aspose.Cells - Worksheet をイメージに変換する

PHPでAspose.Cells for Javaを使用してWorksheetを画像に変換するには、Converterモジュールを単純に呼び出します。

PHPコード

 $imageFormat = new ImageFormat();

//Instantiate a new workbook with path to an Excel file

$book = new Workbook($dataDir . "MyTestBook1.xls");

//Create an object for ImageOptions

$imgOptions = new ImageOrPrintOptions();

//Set the image type

$imgOptions->setImageFormat($imageFormat->getPng());

//Get the first worksheet.

$sheet = $book->getWorksheets()->get(0);

//Create a SheetRender object for the target sheet

$sr = new SheetRender($sheet, $imgOptions);

for ($j = 0; $j < $sr->getPageCount(); $j++)

{

    //Generate an image for the worksheet

    $sr->toImage($j, $dataDir . "mysheetimg" . $j . ".png");

}

ランニングコードのダウンロード

以下のいずれかのソーシャルコーディングサイトから、Aspose.Cellsを使用してワークシートを画像に変換するファイルをダウンロードしてください: