PHP retrieves the Exif thumbnail and exif thumbnail. PHP: how to obtain the Exif thumbnail. This document describes how to obtain the exif thumbnail by PHP. Share it with you for your reference. The specific implementation method is as follows: fileto PHP obtains the Exif thumbnail and exif thumbnail.
This example describes how to obtain the Exif thumbnail by PHP. Share it with you for your reference. The specific implementation method is as follows:
// File to read $ file = 'test.jpg '; $ image = exif_thumbnail ($ file, $ width, $ height, $ type); // width, height and type get filled with data // after calling "exif_thumbnail" if ($ image) {// send header and image data to the browser: header ('content-type :'. image_type_to_mime_type ($ type); print $ image;} else {// there is no thumbnail available, handle the error: print 'no thumbnail available ';}
I hope this article will help you with php programming.
Examples in this article describes how PHP obtains the Exif thumbnail. Share it with you for your reference. The specific implementation method is as follows: // file...