Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
$filename = 'picture.jpg'; //Името на снимката (В твоя случаи ще трябва да е масив от всички снимки)
$degrees = 70; //На колко градуса
// Content type
header('Content-type: image/jpeg');
// Load
$source = imagecreatefromjpeg($filename);
// Rotate
$rotate = imagerotate($source, $degrees, 0);
// Output
imagejpeg($rotate);
?>
<?php
$dir = 'images/'; //Името на директорията, в която са снимките
$files = array_diff(scandir($dir), array(".", ".."));
$file = array_rand($files);
echo '<img src="'.$dir.$files[$file].'" />';
?>