Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turning photo into cartoon using PHP

Most probably using ImageMagick - how to turn photo into "cartoon"? Here's what I mean:

(not sure, that step 2 is necessary).

Thanks!

like image 254
Paul Avatar asked Oct 31 '10 08:10

Paul


1 Answers

A question asked yesterday shows some ImageMagick approaches to get to step 2.

As for step 3, there is a ImageMagick-based application named G'Mic that provides some advanced multi-step filters. The gallery shows some results that come close. However, it is in C++ so you'll probably need to compile it on your system.

Also, Googling for Imagemagick Cartoonify yields some example scripts that are worth checking out.

Also, make sure you dig into the ImageMagick examples page, one of the greatest IM resources around.

That said, I doubt whether it is possible to build a IM-based solution that works as well as the cartoonifier you show. IM is hugely powerful, but may not have the necessary degree of detailed control, individual programming and vectorization functions. But the basic functionality is possible.

like image 181
Pekka Avatar answered Sep 30 '22 20:09

Pekka