![]() |
How to print all debug output from successful image_lib? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: How to print all debug output from successful image_lib? (/showthread.php?tid=20890) |
How to print all debug output from successful image_lib? - El Forum - 07-24-2009 [eluser]gh0st[/eluser] When doing an image resize, how do I output the debug information? Code: $this->image_lib->debug() does not work REF: http://ellislab.com/codeigniter/user-guide/libraries/image_lib.html I am resizing an image but I do not know what the thumbnail file is called, or where it stores it, and I need to grab other debugging information. If the destination thumb is encrypted via an upload, I do not know what the thumbnail file is called. Any help on this would be great. How to print all debug output from successful image_lib? - El Forum - 07-25-2009 [eluser]Cro_Crx[/eluser] just print the variable. Code: print_r($this->image_lib->debug()); |