Class NotebookImageSaveOptions

Class NotebookImageSaveOptions

Nombre del espacio: Aspose.Note.Saving Asamblea: Aspose.Note.dll (25.4.0)

Permite especificar opciones adicionales al renderizar páginas de notebook a imágenes.

public class NotebookImageSaveOptions : NotebookSaveOptions<imagesaveoptions>

Inheritance

object NotebookSaveOptions NotebookSaveOptions NotebookImageSaveOptions

Miembros heredados

NotebookSaveOptions.GetDocumentSaveOptions() ,y, NotebookSaveOptions.DocumentSaveOptions ,y, NotebookSaveOptions.SaveFormat ,y, NotebookSaveOptions.GetDocumentSaveOptions() ,y, NotebookSaveOptions.SaveFormat ,y, NotebookSaveOptions.Flatten ,y, NotebookSaveOptions.DeferredSaving ,y, object.GetType() ,y, object.MemberwiseClone() ,y, object.ToString() ,y, object.Equals(object?) ,y, object.Equals(object?, object?) ,y, object.ReferenceEquals(object?, object?) ,y, object.GetHashCode()

Examples

Mostra cómo guardar un notebook en formato PDF.

// The path to the documents directory.
                                                              string dataDir = RunExamples.GetDataDir_NoteBook();

                                                              // Load a OneNote Notebook
                                                              var notebook = new Notebook(dataDir + "Notizbuch �ffnen.onetoc2");

                                                              // Save the Notebook
                                                              dataDir = dataDir + "ConvertToPDFAsFlattened_out.pdf";
                                                              notebook.Save(
                                                                  dataDir,
                                                                  new NotebookPdfSaveOptions
                                                                  {
                                                                      Flatten = true
                                                                  });

Mostra cómo guardar un notebook como imagen con opciones especificadas.

// The path to the documents directory.
                                                                      string dataDir = RunExamples.GetDataDir_NoteBook();

                                                                      // Load a OneNote Notebook
                                                                      var notebook = new Notebook(dataDir + "Notizbuch �ffnen.onetoc2");

                                                                      var notebookSaveOptions = new NotebookImageSaveOptions(SaveFormat.Png);

                                                                      var documentSaveOptions = notebookSaveOptions.DocumentSaveOptions;

                                                                      documentSaveOptions.Resolution = 400;

                                                                      dataDir = dataDir + "ConvertToImageWithOptions_out.png";

                                                                      // Save the Notebook
                                                                      notebook.Save(dataDir, notebookSaveOptions);

Mostra cómo guardar un notebook en forma de imagen.

// The path to the documents directory.
                                                         string dataDir = RunExamples.GetDataDir_NoteBook();

                                                         // Load a OneNote Notebook
                                                         var notebook = new Notebook(dataDir + "Notizbuch öffnen.onetoc2");

                                                         var notebookSaveOptions = new NotebookImageSaveOptions(SaveFormat.Png);

                                                         var documentSaveOptions = notebookSaveOptions.DocumentSaveOptions;

                                                         documentSaveOptions.Resolution = 400;
                                                         notebookSaveOptions.Flatten = true;

                                                         dataDir = dataDir + "ConvertToImageAsFlattenedNotebook_out.png";

                                                         // Save the Notebook
                                                         notebook.Save(dataDir, notebookSaveOptions);

Constructors

NotebookImageSaveOptions(SaveFormat)

Inicia una nueva instancia de la clase Aspose.Note.Saving.NotebookImageSaveOptions.

public NotebookImageSaveOptions(SaveFormat format)

Parameters

format SaveFormat

El formato en el que se salva el notebook.

 Español