追加画像のリサンプリング - Excel から PDF への変換

Contents
[ ]

Aspose.Cells API を使用してタスクを実行する方法を説明する次のサンプル コードを参照してください。この例では、ファイル内の画像を圧縮しながら、Microsoft Excel ファイルを PDF ファイルに変換します。

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Initialize a new Workbook
// Open an Excel file
Workbook workbook = new Workbook(dataDir+ "input.xlsx");
// Instantiate the PdfSaveOptions
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set Image Resample properties
pdfSaveOptions.SetImageResample(300, 70);
// Save the PDF file
workbook.Save(dataDir+ "OutputFile_out_pdf", pdfSaveOptions);