В этом примере мы растеризуем/сохраним 1-ю и 2-ю страницы RTF-документа как изображения PNG и JPEG.
Полный код
using System;
using System.IO;
using SautinSoft.Document;
using SkiaSharp;
namespace Example
{
class Program
{
static void Main(string[] args)
{
// Get your free 100-day key here:
// https://sautinsoft.com/start-for-free/
RasterizeRtfToPicture();
}
/// <summary>
/// Rasterizing - save RTF document as PNG and JPEG images.
/// </summary>
/// <remarks>
/// Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/rasterize-save-rtf-document-as-png-jpeg-images-net-csharp-vb.php
/// </remarks>
static void RasterizeRtfToPicture()
{
// In this example we'll how rasterize/save 1st and 2nd pages of RTF document
// as PNG and JPEG images.
string inputFile = @"..\..\..\example.rtf";
string jpegFile = "Result.jpg";
string pngFile = "Result.png";
// The file format is detected automatically from the file extension: ".rtf".
// But as shown in the example below, we can specify RtfLoadOptions as 2nd parameter
// to explicitly set that a loadable document has Rtf format.
DocumentCore dc = DocumentCore.Load(inputFile);
DocumentPaginator documentPaginator = dc.GetPaginator(new PaginatorOptions() { UpdateFields = true });
int dpi = 300;
int pagesToRasterize = 2;
int currentPage = 1;
foreach (DocumentPage page in documentPaginator.Pages)
{
// Save the page into Bitmap image with specified dpi and background.
var DPI = new ImageSaveOptions();
DPI.DpiX = 72;
DPI.DpiY = 72;
// Save the 1st document page to the file in PNG format.
SkiaSharp.SKBitmap picture = page.Rasterize(DPI, SautinSoft.Document.Color.White);
// Save the Bitmap to a PNG file.
if (currentPage == 1)
picture.Encode(new FileStream(pngFile, FileMode.Create), SkiaSharp.SKEncodedImageFormat.Png, 100);
else if (currentPage == 2)
// Save the Bitmap to a JPEG file.
picture.Encode(new FileStream(jpegFile, FileMode.Create), SkiaSharp.SKEncodedImageFormat.Jpeg, 100);
currentPage++;
if (currentPage > pagesToRasterize)
break;
}
// Open the results for demonstration purposes.
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(pngFile) { UseShellExecute = true });
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(jpegFile) { UseShellExecute = true });
}
}
}
Imports System
Imports System.IO
Imports SautinSoft.Document
Imports SkiaSharp
Namespace Example
Friend Class Program
Shared Sub Main(ByVal args() As String)
RasterizeRtfToPicture()
End Sub
''' Get your free 100-day key here:
''' https://sautinsoft.com/start-for-free/
''' <summary>
''' Rasterizing - save RTF document as PNG and JPEG images.
''' </summary>
''' <remarks>
''' Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/rasterize-save-rtf-document-as-png-jpeg-images-net-csharp-vb.php
''' </remarks>
Private Shared Sub RasterizeRtfToPicture()
' In this example we'll how rasterize/save 1st and 2nd pages of RTF document
' as PNG and JPEG images.
Dim inputFile As String = "..\..\..\example.rtf"
Dim jpegFile As String = "Result.jpg"
Dim pngFile As String = "Result.png"
' The file format is detected automatically from the file extension: ".rtf".
' But as shown in the example below, we can specify RtfLoadOptions as 2nd parameter
' to explicitly set that a loadable document has Rtf format.
Dim dc As DocumentCore = DocumentCore.Load(inputFile)
Dim documentPaginator As DocumentPaginator = dc.GetPaginator(New PaginatorOptions() With {.UpdateFields = True})
Dim pagesToRasterize As Integer = 2
Dim currentPage As Integer = 1
For Each page As DocumentPage In documentPaginator.Pages
' Save the page into Bitmap image with specified dpi and background.
Dim dpi As ImageSaveOptions = New ImageSaveOptions
dpi.DpiX = 72
dpi.DpiY = 72
Dim picture As SKBitmap = page.Rasterize(dpi, SautinSoft.Document.Color.White)
' Save the Bitmap to a PNG file.
If currentPage = 1 Then
picture.Encode(New FileStream(pngFile, FileMode.Create), SkiaSharp.SKEncodedImageFormat.Png, 100)
ElseIf currentPage = 2 Then
' Save the Bitmap to a JPEG file.
picture.Encode(New FileStream(jpegFile, FileMode.Create), SkiaSharp.SKEncodedImageFormat.Jpeg, 100)
End If
currentPage += 1
If currentPage > pagesToRasterize Then
Exit For
End If
Next page
' Open the results for demonstration purposes.
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(pngFile) With {.UseShellExecute = True})
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(jpegFile) With {.UseShellExecute = True})
End Sub
End Class
End Namespace
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.com или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: