Resizing
|
|
|
|
<?php
system("convert -quality 80 -antialias -sample '$new_wx$new_h' '$graphic' '$graphics'");
?>
|
|
|
Usage Example
|
<?
$new_w=300; $new_h=300; $graphic="graphic.gif";
$graphics="graphics.gif";
system("convert -quality 80 -antialias -sample '$new_wx$new_h' '$graphic' '$graphics'");
echo "OK";
?>
|
|
|
Rate This Script
|
|
|
|