ImageSelectorPlus plugin is used to facilitate manipulation with images, especially their insertion into posts.
When uploading an image, you can post it directly. Follow the instructions above the QuickBlog form.
Plugin uses template file "plugin_quickblog.tpl" to display the inserted pictures. So by modifying it, you can change the design of displayed images.
Information about pictures is stored in an array {$quickblog} which has several parts you can use in your template:
Another functionality of this plugin is multiple image insertion. If you write an xml structure in your entry, this plugin then replaces this xml structure by pictures from your media library.
When you write a blog, where you want to include many pictures in your entries. When you have fifty images and these images numbered in an ascending row, it is lengthy to insert them one by one through the images selector. With this plugin, you can insert all of them using on a single line.
<mediainsert>
<gallery name="MyHolidays/" />
<media type="single" name="pict0034" />
<media type="single" name="pict0032" />
<media type="range" prefix="pict00" start="35" stop="52" />
</mediainsert>
This example inserts from the directory "MyHolidays" picture "pict0034", then picture "pict0032" and then all pictures from "pict0035" to "pict0052".
<mediainsert>
<gallery name="MyHolidays/" />
<media type="gallery" />
</mediainsert>
The plugin is sensitive to bad xml syntax. So if it is not perfect, for example if you ommit ending backslash in the media tag, it can cause fail to your whole blog!!!
Plugin uses template file "plugin_mediainsert.tpl" to display the inserted pictures. So by modifying it, you can change the design of displayed images.
Information about pictures is stored in an array {$plugin_mediainsert_media} which has these parts you can use in your template:
Typically when you want to upload many pictures at once. You need not to select every image discinctly. Just pack them in the ZIP archive, upload this archive and it will be unzipped on your blog.
This feature will automatically search through your blog post for images in the form:
<img src="/uploads/myimage.jpg" width="100" height="150" />
When it finds an image tag in this form it will replace the value of 'src' attribute with the path to the image resizing script, serendipity_admin_image_selector.php. The end result would be something like this:
<img src="http://domain.com/serendipity_admin_image_selector.php?serendipity[image]=1&serendipity[disposition]=inline&serendipity[step]=showItem&serendipity[resizeWidth]=100&serendipity[resizeHeight]=150" width="100" height="150" />
This saves you time if you need to use images at multiple resolutions, and can also reduce download times for users. The performance hit is minimal as the image resize is only done once, as is the parsing of img tags.
Garvin Hicking, Germany
Vladim¡r Ajgl (vlada [at] ajgl [dot] cz), Czech Republic, 2007-11-19