Answers for "load image php html"

PHP
0

php file for image load

$image = 'path/to/image.jpg';
header('Content-Type: image/jpeg');
readfile($image);
Posted by: Guest on September-04-2020
-2

html to image php

$url="http://google.com";
$output_path="test.png";
shell_exec("$path $url $output_path");
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language