Official response
Mario at GemBox
Hi,
We have added support for OCR (optical character recognition), it is available in the latest versions of GemBox.Pdf.
Regards,
Mario
As a side note, this task can already be accomplished with GemBox.Document.
For example, like the following:
var document = new DocumentModel();
var picture = new Picture(document, "input.png");
document.Sections.Add(new Section(document, new Paragraph(document, picture)));
var pageSetup = document.Sections[0].PageSetup;
pageSetup.PageWidth = picture.Layout.Size.Width;
pageSetup.PageHeight = picture.Layout.Size.Height;
var pageMargins = pageSetup.PageMargins;
pageMargins.Left = pageMargins.Right = pageMargins.Top = pageMargins.Bottom = 0;
document.Save("output.pdf");
Regards,
Mario