Hi Martin,
Thank you for contacting Syncfusion support.
We can get a stream from image URL and insert them into PDF document in ASP.NET Core. Please refer the below code snippet for your reference,
WebClient myWebClient = new WebClient();
Stream imageStream = new MemoryStream(bytes);
//Load the image from the stream
PdfBitmap image = new PdfBitmap(imageStream); |
Please find the sample for the same, which can be downloaded from the below link,
Please try the above sample in your end and let us know if it satisfies your requirement.
Regards,
Sowmiya L