The simple image editor has a native support for plugins.To create a plugin, create a new file in the plugins folder and name it SE_pluginname.php. Now whenever you want to use the plugin you just call:
$se=new SImEdi("image.png");
$se->plugin("pluginname");
That is all.Now to call a method:$se->pluginnma->method();
|