I have an .net core 2 application. I use syncfusion, the docIO libraries for working with word documents. I have a word document and i want to change format of all images inside the document to .png
I have found the WPicture objects iterating over the paragraphs:
if (paragraphItem is WPicture)
{
var wpicture = paragraphItem as WPicture;
var imageBytes = wpicture.ImageBytes;
}
How can i change the format of WPicture object?