Guardar imágenes con diferentes procesamientos en IronOCR

This article was translated from English: Does it need improvement?
Translated
View the article in English

¿Cómo puedo guardar una imagen con diferentes procesados/filtros de imagen aplicados?

Aplique el siguiente ejemplo de código sencillo:

OcrInput Input = new OcrInput(browsFile_txt.Text);
    // Image filter being tested
    Input.ToGrayScale();
    foreach (var p in Input.Pages)
    {
    p.SaveAsImage($"{outputPath}\\{DateTime.Now.ToString("yyyyMMddhhmmss")}.png");
    }
OcrInput Input = new OcrInput(browsFile_txt.Text);
    // Image filter being tested
    Input.ToGrayScale();
    foreach (var p in Input.Pages)
    {
    p.SaveAsImage($"{outputPath}\\{DateTime.Now.ToString("yyyyMMddhhmmss")}.png");
    }
Dim Input As New OcrInput(browsFile_txt.Text)
	' Image filter being tested
	Input.ToGrayScale()
	For Each p In Input.Pages
	p.SaveAsImage($"{outputPath}\{DateTime.Now.ToString("yyyyMMddhhmmss")}.png")
	Next p
VB   C#

Para obtener una lista completa de los filtros de optimización de imágenes disponibles en IronOCR, consultehttps://ironsoftware.com/csharp/ocr/examples/ocr-image-filters-for-net-tesseract/

Documentación de clases al estilo MSDN -https://ironsoftware.com/csharp/ocr/object-reference/api/IronOcr.OcrInput.html#methods