PDF for .NET
画質を設定する

To set the image quality in the PDF document, use the C1PdfDocumentBase.ImageQuality property. This property can be set either in the designer or in code. For more information on images and image quality, see Adding Images.

デザイナの場合

Locate the C1PdfDocumentBase.ImageQuality property in the Properties window and set it to one of the following ImageQualityEnum settings: Low, Medium, Default, or High.

コードの場合

Add the following code to the Form_Load event to set the C1PdfDocumentBase.ImageQuality property to high quality images:

 Visual Basic コードの書き方

Visual Basic
コードのコピー
' C1PdfDocumentオブジェクトを作成します。
Dim pdf As New C1.C1Pdf.C1PdfDocument()
' 高品質画像を使用します。
pdf.ImageQuality = C1.C1Pdf.ImageQualityEnum.High ' ドキュメントをファイルに保存します。
pdf.Save("c:\mydoc.pdf")

C# コードの書き方

C#
コードのコピー
// C1PdfDocumentオブジェクトを作成します。
C1.C1Pdf.C1PdfDocument pdf = new C1.C1Pdf.C1PdfDocument();
// 高品質画像を使用します。
pdf.ImageQuality = C1.C1Pdf.ImageQualityEnum.High;
// ドキュメントをファイルに保存します。
pdf.Save(@"c:\mydoc.pdf");