Viewing File: /opt/alt/tests/alt-php83-pecl-vips_1.0.13-1.el8/tests/010.phpt

--TEST--
output int arrays work
--SKIPIF--
<?php if (!extension_loaded("vips")) print "skip"; ?>
--FILE--
<?php 
  $point = vips_call("black", NULL, 1, 1)["out"];
  $image = vips_call("embed", $point, 10, 20, 100, 100, 
		["extend" => "white"])["out"];

  $result = vips_call("min", $image, 
		["x" => true, "y" => true, "x_array" => true]);
  $x_array = $result["x_array"];

  if ($x_array == [10]) {
	echo "pass";
  }
?>
--EXPECT--
pass
Back to Directory File Manager
<