I need to load the image from file (take by camera and saved in local), but I can't find the ways for that, the normal way just can pass the stream to PdfBitmap as below:
Stream imageStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Test.asset.Xamarin_JPEG.jpg");
PdfImage image = new PdfBitmap(imageStream);
but how can I get the image from file by path?
Thanks!