Searched refs:font (Results 1 – 13 of 13) sorted by relevance
/imagick/tests/ |
H A D | functions.inc | 66 * to draw any text fails as the ImageMagick default font is null. 68 * This function just find a 'sensible' font to use, either from the 98 // Find and set a font for the Imagick object 101 $font = findDefaultFont(); 103 $imagick->setFont($font); 106 // Find and set a font for the ImagickDraw object 109 $font = findDefaultFont(); 111 $imagickDraw->setFont($font);
|
H A D | 015-imagickdrawsetresolution.phpt | 25 echo "Small font _is_ smaller than big font.".PHP_EOL; 54 Small font _is_ smaller than big font.
|
H A D | OFL.txt | 15 development of collaborative font projects, to support the font creation 66 Copyright Holder. This restriction only applies to the primary font name as
|
/imagick/docker/repro/ |
H A D | README.md | 4 programs like 'convert -list font' to check if ImageMagick can find fonts. 21 --with-urw-base35-font-dir=/usr/share/fonts/opentype/urw-base35
|
H A D | Dockerfile | 17 RUN echo "'convert -list font' to check if ImageMagick can find fonts."
|
/imagick/ |
H A D | imagemagick_dependency.sh | 101 --with-urw-base35-font-dir=/usr/share/fonts/type1/urw-base35/
|
H A D | php_imagick_helpers.h | 25 zend_bool php_imagick_check_font(char *font, int font_len TSRMLS_DC);
|
H A D | imagickdraw_class.c | 525 char *font, *absolute; in PHP_METHOD() local 544 if (!php_imagick_check_font(font, font_len TSRMLS_CC)) { in PHP_METHOD() 562 status = DrawSetFont(internd->drawing_wand, font); in PHP_METHOD() 822 char *font; in PHP_METHOD() local 830 font = DrawGetFont(internd->drawing_wand); in PHP_METHOD() 832 if (!font) { in PHP_METHOD() 835 IM_ZVAL_STRING(return_value, font); in PHP_METHOD() 836 IMAGICK_FREE_MAGICK_MEMORY(font); in PHP_METHOD() 999 char *font; in PHP_METHOD() local 1009 font = DrawGetFont(internd->drawing_wand); in PHP_METHOD() [all …]
|
H A D | ChangeLog | 303 - ImagickDraw::setFontFamily no longer checks whether the font is available. This allows a 304 font family to be set where the family name is not the same as the font name. However it also 305 means an invalid family name can be set, leading to the default font being used, instead of an 995 - phpinfo() now displays available font family and font names
|
H A D | imagick_class.c | 1793 char *font, *absolute; in PHP_METHOD() local 1812 if (!php_imagick_check_font(font, font_len TSRMLS_CC)) { in PHP_METHOD() 1827 status = MagickSetFont(intern->magick_wand, font); in PHP_METHOD() 1841 char *font; in PHP_METHOD() local 1849 font = MagickGetFont(intern->magick_wand); in PHP_METHOD() 1851 if (font) { in PHP_METHOD() 1852 IM_ZVAL_STRING(return_value, font); in PHP_METHOD() 1853 IMAGICK_FREE_MAGICK_MEMORY(font); in PHP_METHOD() 10143 char *font; local 10157 font = DrawGetFont(internd->drawing_wand); [all …]
|
H A D | imagick_helpers.c | 437 zend_bool php_imagick_check_font(char *font, int font_len TSRMLS_DC) in php_imagick_check_font() argument 449 if (strncasecmp(fonts[i], font, font_len) == 0) { in php_imagick_check_font()
|
H A D | Imagick.stub.php | 224 public function setFont(string $font): bool {} argument
|
H A D | Imagick_arginfo.h | 959 ZEND_ARG_TYPE_INFO(0, font, IS_STRING, 0) 961 ZEND_ARG_INFO(0, font)
|
Completed in 107 milliseconds