Directive | Local Value | Master Value |
---|---|---|
imlib.cache_size | 0 | 0 |
imlib.filter_path | /usr/lib64/php83/php_imlib_filters | /usr/lib64/php83/php_imlib_filters |
imlib.font_cache_size | 524288 | 524288 |
imlib.font_path | /usr/share/fonts/TTF | /usr/share/fonts/TTF |
imlib.max_cache_size | 4194304 | 4194304 |
imlib.min_cache_size | 0 | 0 |
T1Lib Support | enabled |
Filter name | HSB Color (php_hsbcolor) |
Description | Provides HSB space color modifications. |
Author | Piotr Pawlow (pp@siedziba.pl) |
Filters | hsbcolor (int x=0, int y=0, int w=image_width, int h=image_height, double h_add=0, double s_add=0, double b_add=0, double h_mul=1, double s_mul=1, double b_mul=1) |
Filter name | Tinting (php_colormod) |
Description | Provides PHP interface to Willem Monsuwe's color modification filters. |
Author | Piotr Pawlow (pp@siedziba.pl) |
Filters | colormod (int x=0, int y=0, int w=image_width, int h=image_height, double brightness[_r|_g|_b|_a]=0, double contrast[_r|_g|_b|_a]=1, double gamma[_r|_g|_b|_a]=1, double tint[_r|_g|_b|_a]=1) |
Filter name | Bump Mapping (php_bumpmap) |
Description | Provides PHP interface to Willem Monsuwe's bump mapping filter. |
Author | Piotr Pawlow (pp@siedziba.pl) |
Filters | bump_map (Image map, int angle=0, int elevation=30, int depth=0x200, int red=0x200, int green=0x200, int blue=0x200, int ambient=0) bump_map_point (Image map, int x=0, int y=0, int z=30, int depth=0x200, int red=0x200, int green=0x200, int blue=0x200, int ambient=0) |
Filter name | Test Filter (php_testfilter) |
Description | Just a simple native php_imlib filter, based on Chriss Ross' test filter from imlib2 package. |
Author | Piotr Pawlow (pp@siedziba.pl) |
Filters | tint (int x=0, int y=0, int w=image_width, int h=image_height, int red=255, int green=255, int blue=255, int alpha=255) |
Filter name | Color Matrix (php_colormatrix) |
Description | Color processing using 4x4 matrices. Based on an article by Paul Haeberli. You can use built-in saturation and hue rotate filters (both filters maintain luminance), or supply your own matrix as a 16-element array. RGB values are computed as follows: r' = r*matrix[0] + g*matrix[4] + b*matrix[8] + matrix[12] g' = r*matrix[1] + g*matrix[5] + b*matrix[9] + matrix[13] b' = r*matrix[2] + g*matrix[6] + b*matrix[10] + matrix[14] |
Author | Piotr Pawlow (pp@siedziba.pl) |
Filters | cm_user (int x=0, int y=0, int w=image_width, int h=image_height, array matrix=(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1)) cm_saturation (int x=0, int y=0, int w=image_width, int h=image_height, double sat=1) cm_huerot (int x=0, int y=0, int w=image_width, int h=image_height, double angle=0) |