Enum SaveFormat

Enum SaveFormat

名称: Aspose.Note 集合: Aspose.Note.dll (25.4.0)

显示文件存储的格式。

public enum SaveFormat
   {
      Docx,        // <-- no changes here
      Pdf,         // <-- no changes here
      FlatOpcml,  // <-- no changes here
      Dot,         // <-- no changes here
      Rtf,         // <-- no changes here
      Text,        // <-- no changes here
      Html,        // <-- no changes here
      Mhtml       // <-- no changes here
   }

Fields

Bmp = 2

说明输出是 BMP 文件。

Gif = 4

说明输出是GIF文件。

Html = 8

说明输出是HTML文件。

Jpeg = 3

说明输出是 JPEG 文件。

One = 7

指定输出是 OneNote 文件。

Pdf = 6

说明输出是PDF文件。

Png = 1

说明输出是 PNG 文件。

Tiff = 5

说明输出是 TIFF 文件。

Examples

显示如何使用 SaveFormat 列表保存文档。

string inputFile = "Sample1.one";
   string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   string outputFile = "SaveDocToOneNoteFormatUsingSaveFormat_out.one";
   Document document = new Document(dataDir + inputFile);
   document.Save(dataDir + outputFile, SaveFormat.One);

显示如何使用默认设置保存文档的PDF格式。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += "SaveWithDefaultSettings_out.pdf";
   oneFile.Save(dataDir, SaveFormat.Pdf);

显示如何保存文档作为图像在Jpeg格式使用SaveFormat。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += "SaveToJpegImageUsingSaveFormat_out.jpg";
   oneFile.Save(dataDir, SaveFormat.Jpeg);

显示如何在GIF格式保存文档。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += "SaveToImageDefaultOptions_out.gif";
   oneFile.Save(dataDir, SaveFormat.Gif);

显示如何在保存文档时设置图像质量为 JPEG 格式。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document doc = new Document(dataDir + "Aspose.one");
   dataDir += @"\SetOutputImageResolution_out.jpg";
   doc.Save(dataDir, new ImageSaveOptions { Quality = 100 }.WithFormat(SaveFormat.Jpeg));

显示如何使用 ImageSaveOptions 在 Bmp 格式中保存文档作为图像。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += "SaveToBmpImageUsingImageSaveOptions_out.bmp";
   oneFile.Save(dataDir, new ImageSaveOptions { SaveFormat = SaveFormat.Bmp });

显示如何设置图像分辨率,当将文档保存为图片时。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document doc = new Document(dataDir + "Aspose.one");
   dataDir += "SetOutputImageResolution_out.jpg";
   doc.Save(dataDir, new ImageSaveOptions { Resolution = 220, SaveFormat = SaveFormat.Jpeg });

显示如何保存文档作为灰色图像。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += "SaveAsGrayscaleImage_out.png";
   oneFile.Save(dataDir, new ImageSaveOptions { SaveFormat = SaveFormat.Png, ColorMode = ColorMode.GrayScale });

显示如何保存文档作为图像在 Tiff 格式使用 PackBits 压缩。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(Path.Combine(dataDir, "Aspose.one"));
   var dst = Path.Combine(dataDir, "SaveToTiffUsingPackBitsCompression.tiff");
   oneFile.Save(dst, new ImageSaveOptions(SaveFormat.Tiff)
                 {
                     TiffCompression = TiffCompression.PackBits
                 });

显示如何保存文档作为图像在 Tiff 格式使用 Jpeg 压缩。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(Path.Combine(dataDir, "Aspose.one"));
   var dst = Path.Combine(dataDir, "SaveToTiffUsingJpegCompression.tiff");
   oneFile.Save(dst, new ImageSaveOptions(SaveFormat.Tiff)
   {
      TiffCompression = TiffCompression.Jpeg,
      Quality = 93
   });

显示如何使用 CCITT Group 3 传真压缩保存文档作为图像的 Tiff 格式。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(Path.Combine(dataDir, "Aspose.one"));
   var dst = Path.Combine(dataDir, "SaveToTiffUsingCcitt3Compression.tiff");
   oneFile.Save(dst, new ImageSaveOptions(SaveFormat.Tiff)
   {
      ColorMode = ColorMode.BlackAndWhite,
      TiffCompression = TiffCompression.Ccitt3
   });

显示如何使用 Otsu 方法保存文档作为二进制图像。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += @"\SaveToBinaryImageUsingOtsuMethod_out.png";
   oneFile.Save(dataDir, new ImageSaveOptions(SaveFormat.Png)
   {
      ColorMode = ColorMode.BlackAndWhite,
      BinarizationOptions = new ImageBinarizationOptions()
      {
         BinarizationMethod = BinarizationMethod.Otsu,
      }
   });

显示如何使用固定边界保存文档作为二进制图像。

string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
   Document oneFile = new Document(dataDir + "Aspose.one");
   dataDir += "SaveToBinaryImageUsingFixedThreshold_out.png";
   oneFile.Save(dataDir,
                  new ImageSaveOptions(SaveFormat.Png)
                  {
                      ColorMode = ColorMode.BlackAndWhite,
                      BinarizationOptions = new ImageBinarizationOptions()
                      {
                          BinarizationMethod = BinarizationMethod.FixedThreshold,
                          BinarizationThreshold = 123
                      }
                  });
 中文