Home
last modified time | relevance | path

Searched refs:font (Results 1 – 13 of 13) sorted by relevance

/imagick/tests/
H A Dfunctions.inc66 * 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 D015-imagickdrawsetresolution.phpt25 echo "Small font _is_ smaller than big font.".PHP_EOL;
54 Small font _is_ smaller than big font.
H A DOFL.txt15 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 DREADME.md4 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 DDockerfile17 RUN echo "'convert -list font' to check if ImageMagick can find fonts."
/imagick/
H A Dimagemagick_dependency.sh101 --with-urw-base35-font-dir=/usr/share/fonts/type1/urw-base35/
H A Dphp_imagick_helpers.h25 zend_bool php_imagick_check_font(char *font, int font_len TSRMLS_DC);
H A Dimagickdraw_class.c525 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 DChangeLog303 - 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 Dimagick_class.c1793 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 Dimagick_helpers.c437 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 DImagick.stub.php224 public function setFont(string $font): bool {} argument
H A DImagick_arginfo.h959 ZEND_ARG_TYPE_INFO(0, font, IS_STRING, 0)
961 ZEND_ARG_INFO(0, font)

Completed in 74 milliseconds