Search found 1 match
- Fri Jun 11, 2021 11:59 am
- Forum: Document .Net
- Topic: Replace Images from PDF
- Replies: 5
- Views: 3913
Re: Replace Images from PDF
I want to add some extra staff, first of all you can get the image data, load it, next create a new picture and replace the old. foreach (Element el in dc.GetChildElements(true, ElementType.Picture).Reverse()) { if (el is Picture) { Picture pict = el as Picture; // Get image bytes var bytes = pict.I...