Display thumbnailPhoto from Active Directory in PHP

This seems to be a JPEG-File, so you should be able to send that data together with the appropriate mime-type to the browser. It should be possible to output that image with something like: <img src=”data:image/jpeg;base64,<?php echo base64_encode($imageString); ?>”/> But it might also be possible to save files of any image format into that thumbnailPhoto … Read more