Home
last modified time | relevance | path

Searched refs:offset (Results 1 – 17 of 17) sorted by relevance

/imagick/tests/
H A D245_Tutorial_screenEmbed_basic.phpt24 $offset = 332.9;
27 0, 0, 364 - $offset, 51,
28 $width, 0, 473.4 - $offset, 23,
29 0, $height, 433.5 - $offset, 182,
30 $width, $height, 523 - $offset, 119.4
36 $imagick->compositeImage($overlay, \Imagick::COMPOSITE_OVER, (int)(364.5 - $offset), 23);
H A D219_ImagickDraw_setStrokeLineJoin_basic.phpt21 $offset = 220;
28 array('x' => 40 * 5, 'y' => 10 * 5 + $x * $offset),
29 array('x' => 20 * 5, 'y' => 20 * 5 + $x * $offset),
30 array('x' => 70 * 5, 'y' => 50 * 5 + $x * $offset),
31 array('x' => 40 * 5, 'y' => 10 * 5 + $x * $offset),
H A D218_ImagickDraw_setStrokeLineCap_basic.phpt21 $offset = 0;
25 $draw->line(50 + $offset, 50, 50 + $offset, 250);
26 $offset += 50;
H A D208_ImagickDraw_setFontStretch_basic.phpt29 $offset = 0;
32 $draw->annotation(50, 75 + $offset, "Lorem Ipsum!");
33 $offset += 50;
H A D127_Imagick_progressMonitor_basic.phpt23 $callback = function ($offset, $span) use (&$status, $startTime, $debug) {
27 if (((100 * $offset) / $span) > 20) {
H A D081_Imagick_getImageHistogram_basic.phpt86 $offset = ($count + 1) * $histogramHeight;
89 $draw->line($index, $offset, $index, $offset - ($value * $scale));
H A D237_Tutorial_deconstructGif_basic.phpt44 $offset = ($distanceToMove * $count / ($imageFrames -1)) - ($circleRadius + $strokeWidth);
45 …$drawing->translate($offset, ($imageSize / 2) + ($imageSize / 3 * cos(20 * $count / $imageFrames))…
H A D278_Imagick_optimaze_gif.phpt47 $offset = ($distanceToMove * $count / ($imageFrames -1)) - ($circleRadius + $strokeWidth);
48 …$drawing->translate($offset, ($imageSize / 2) + ($imageSize / 3 * cos(20 * $count / $imageFrames))…
H A D061_Imagick_distortImage_Barrel.phpt18 // otherwise it defaults to the exact center of the image given (regardless of its virtual offset).
H A D174_ImagickDraw_affine_basic.phpt36 //Translate (offset) the drawing
/imagick/
H A Dphp_imagick_helpers.h37 MagickBooleanType php_imagick_progress_monitor(const char *text, const MagickOffsetType offset, con…
41 …agick_progress_monitor_callable(const char *text, const MagickOffsetType offset, const MagickSizeT…
H A DImagick.stub.php52 public function setSizeOffset(int $columns, int $rows, int $offset): bool {} argument
433 public function smushImages(bool $stack, int $offset): Imagick {} argument
592 public function adaptiveThresholdImage(int $width, int $height, int $offset): bool {} argument
715 public function steganoImage(Imagick $watermark, int $offset): Imagick {} argument
1269 …public function subimageMatch(Imagick $image, ?array &$offset = null, ?float &$similarity = null, … argument
1272 …public function similarityimage(Imagick $image, ?array &$offset = null, ?float &$similarity = null… argument
H A Dimagick.c3831 imagick_object_handlers.offset = XtOffsetOf(php_imagick_object, zo);
3845 imagickdraw_object_handlers.offset = XtOffsetOf(php_imagickdraw_object, zo);
3857 imagickpixeliterator_object_handlers.offset = XtOffsetOf(php_imagickpixeliterator_object, zo);
3870 imagickpixel_object_handlers.offset = XtOffsetOf(php_imagickpixel_object, zo);
3886 imagickkernel_object_handlers.offset = XtOffsetOf(php_imagickkernel_object, zo);
H A Dimagickdraw_class.c1645 double offset; local
1652 offset = DrawGetStrokeDashOffset(internd->drawing_wand);
1654 RETVAL_DOUBLE(offset);
2665 double offset; local
2668 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &offset) == FAILURE) {
2674 DrawSetStrokeDashOffset(internd->drawing_wand, offset);
H A Dimagick_helpers.c26 MagickBooleanType php_imagick_progress_monitor(const char *text, const MagickOffsetType offset, con… in php_imagick_progress_monitor() argument
45 fprintf(fp, "text: %s, offset: %lld, span: %lld\n", text, offset, span); in php_imagick_progress_monitor()
66 …agick_progress_monitor_callable(const char *text, const MagickOffsetType offset, const MagickSizeT… in php_imagick_progress_monitor_callable() argument
118 ZVAL_LONG(&zargs[0], offset); in php_imagick_progress_monitor_callable()
123 ZVAL_LONG(*zargs[0], offset); in php_imagick_progress_monitor_callable()
H A DImagick_arginfo.h318 ZEND_ARG_TYPE_INFO(0, offset, IS_LONG, 0)
320 ZEND_ARG_INFO(0, offset)
1712 ZEND_ARG_TYPE_INFO(0, offset, IS_LONG, 0)
1714 ZEND_ARG_INFO(0, offset)
2429 ZEND_ARG_TYPE_INFO(0, offset, IS_LONG, 0)
2431 ZEND_ARG_INFO(0, offset)
3145 ZEND_ARG_TYPE_INFO(0, offset, IS_LONG, 0)
3147 ZEND_ARG_INFO(0, offset)
4941 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(1, offset, IS_ARRAY, 1, "null")
4943 ZEND_ARG_INFO(1, offset)
H A Dimagick_class.c444 ssize_t offset; in PHP_METHOD() local
452 status = MagickGetSizeOffset(intern->magick_wand, &offset); in PHP_METHOD()
459 RETVAL_LONG(offset); in PHP_METHOD()
469 im_long columns, rows, offset; in PHP_METHOD() local
478 status = MagickSetSizeOffset(intern->magick_wand, columns, rows, offset); in PHP_METHOD()
3163 long offset; in PHP_METHOD() local
3166 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "bl", &stack, &offset) == FAILURE) { in PHP_METHOD()
10517 im_long width, height, offset; local
10528 status = MagickAdaptiveThresholdImage(intern->magick_wand, width, height, offset);
10675 im_long offset; local
[all …]

Completed in 80 milliseconds