I use CodeIgniter Image Manipulation Class to make a Thumbnail of my images.
so the problem is: the property thumb_marker job is inserting ‘_thumb’ just before the file extension, so mypic.jpg would become mypic_thumb.jpg
but what I want is the opposite I need my file name be: thumb_mypic.jpg
Extend the Image library.
Now, look for this line in initialize():
Change it to. Notice the
$this->thumb_markerand$filenamechange:Last you should set
My_Image_lib->thumb_marker = 'thumb_';