Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
Loading Fields Data from PDF/Controllers/HomeController.cs parses the PDF structure and converts its form data into values the application can display or store:[HttpPost]
public IActionResult ShowPdfFieldsData(IFormFile pdfFile)
{
if (pdfFile != null)
using (var stream = new MemoryStream())
{
pdfFile.CopyTo(stream);
var bytes = stream.ToArray();
var document = StiPdfParser.Parse(bytes);
ViewData["pdfData"] = StiPdfImportDocumentHelper.ConvertData(document);
}
return View("Index");
}