Convert real photos into cartoon images with high accuracy and beautiful
example code is here
composer require ganiyevuz/toonapp
require_once "vendor/autoload.php";
use GaniyevUz\ToonApp;
$image = new CURLFile('image.jpg'); // source image
$ToonApp = new ToonApp($image);
echo $ToonApp->execute();
//save with custom name
$name = 'new-'.time().'.png';
echo $img->execute($name);