Lines Matching refs:profile
1405 char *pattern = "*", **profiles, *profile; in PHP_METHOD() local
1433 profile = (char *)MagickGetImageProfile(intern->magick_wand, profiles[i], &length); in PHP_METHOD()
1435 add_assoc_stringl(return_value, profiles[i], profile, length); in PHP_METHOD()
1437 add_assoc_stringl(return_value, profiles[i], profile, length, 1); in PHP_METHOD()
1439 IMAGICK_FREE_MAGICK_MEMORY(profile); in PHP_METHOD()
5094 char *name, *profile; in PHP_METHOD() local
5099 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &name, &name_len, &profile, &profile_le… in PHP_METHOD()
5107 status = MagickProfileImage(intern->magick_wand, name, profile, profile_len); in PHP_METHOD()
5222 unsigned char *profile; in PHP_METHOD() local
5239 profile = MagickRemoveImageProfile(intern->magick_wand, name, &profile_len); in PHP_METHOD()
5241 if (!profile) { in PHP_METHOD()
5246 IM_ZVAL_STRING(return_value, (char *)profile); in PHP_METHOD()
5247 IMAGICK_FREE_MAGICK_MEMORY(profile); in PHP_METHOD()
5695 char *name, *profile; local
5700 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &name, &name_len, &profile, &profile_le…
5708 status = MagickSetImageProfile(intern->magick_wand, name, profile, profile_len);
7472 char *profile, *name; local
7488 profile = (char *)MagickGetImageProfile(intern->magick_wand, name, &length);
7490 if (profile) {
7491 IM_ZVAL_STRINGL(return_value, profile, length);
7492 IMAGICK_FREE_MAGICK_MEMORY(profile);