ProPeler
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
tmp
/
Filename :
compress2.php
back
Copy
<?php foreach (glob("/var/www/html/wp-content/themes/bayisihat-jurnal/assets/*.jpg") as $p) { $data = file_get_contents($p); $im = @imagecreatefromstring($data); if (!$im) { echo "cannot ".basename($p)."\n"; continue; } $w = imagesx($im); $h = imagesy($im); $max = 1400; if ($w > $max) { $im2 = imagescale($im, $max, intval($h*$max/$w)); imagedestroy($im); $im = $im2; } imagejpeg($im, $p, 82); imagedestroy($im); echo basename($p)." -> ".intval(filesize($p)/1024)."KB\n"; }