Recent Changes - Search:

Cookbook

PmWiki

pmwiki.org

AddImageType

Summary: Add new image type extension
Version:
Prerequisites: This recipe was last tested on PmWiki version: 2.1beta20; this recipe requires at least PmWiki version: 2.0 and no other recipes.
Status:
Maintainer:
Categories: Images

Questions answered by this recipe

How do I add a new image type extension to the list that PmWiki automagically recognises to display as images?

Description

To add a new image type extension, say .ico (icon), add the following line to the config.php file.

$ImgExtPattern = "$ImgExtPattern|\\.ico|\\.ICO";

An example of adding .bmp (bit map) is

$ImgExtPattern = "\\.(?:gif|jpg|jpeg|png|bmp|GIF|JPG|JPEG|PNG|BMP)";

Notes

Release Notes

Comments

I was not able to make the above work (I was worrying about .tiff files), however, the following (in config.php) did seem to work for me:

    $ImgExtPattern = ereg_replace("(\)$)", "|tiff|tif|TIFF|TIF)", $ImgExtPattern);

The Replace Regular Expression looks for the closing ) in $ImgExtPattern and replaces it with the extension(s) that you would like to add, plus the closing ).

Simon Forknall, 02 June 2009 (PmWiki V2.2.1, Mac OS X)

See Also

Contributors

  • PM
Edit - History - Print - Recent Changes - Search
Page last modified on September 10, 2011, at 11:42 AM