dbprefix}entities where subtype={$img_type}"; $total = get_data_row($query); $num_images = $total->total; $img_type = get_subtype_id('object', 'album'); $query = "SELECT count(guid) as total from {$CONFIG->dbprefix}entities where subtype={$img_type}"; $total = get_data_row($query); $num_albums = $total->total; $num_comments_photos = count_annotations(0, 'object', 'image', 'generic_comment'); $num_comments_albums = count_annotations(0, 'object', 'album', 'generic_comment'); $num_views = count_annotations(0, 'object', 'image', 'tp_view'); if (get_plugin_setting('tagging', 'tidypics') != "disabled") $num_tags = count_annotations(0, 'object', 'image', 'phototag'); ?>
An image library is required by Tidypics to perform various manipulations: resizing on upload, watermarking, rotation, and cropping.
There are three image library options with Tidypics: PHP extension GD,
ImageMagick called via a system call, and the PHP extension
imagick. GD is the most common of the three on hosted servers but suffers
from serious memory usage problems when resizing photos. If you have access to ImageMagick (whether through system calls or the
PHP extension), we recommend that you use that.