Show A Base64 Image On PHP Page Using Image header() & readfile()
问题 I am working on a script where after some operation of PHP functions, I generate a base64 image data in $base64Image variable. Now I want to show that base64 image data as a full image on the web browser same as an image.jpeg . For this purpose, I wrote some codes as shown below... screenshot.php <?php /*------------------------ // Basic PHP Operations // ------------------------*/ // Get URL Parameters $key1 = $_GET["key1"]; $key2 = $_GET["key2"]; // Some PHP Operations......................