📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 17:11:46
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php82-pecl-vips_1.0.13-1.el8
/
tests
📍 /opt/alt/tests/alt-php82-pecl-vips_1.0.13-1.el8/tests
🔄 Refresh
✏️
Editing: 036.phpt
Read Only
--TEST-- can enlarge with a bicubic interpolator --SKIPIF-- <?php if (!extension_loaded("vips")) print "skip"; ?> --FILE-- <?php $filename = dirname(__FILE__) . "/images/img_0076.jpg"; $image1 = vips_image_new_from_file($filename)["out"]; $interp = vips_interpolate_new("bicubic"); $sz = vips_call("affine", $image1, [2, 0, 0, 2], ["interpolate" => $interp])["out"]; $w1 = vips_image_get($image1, "width")["out"]; $wr = vips_image_get($sz, "width")["out"]; if ($w1 * 2 == $wr) { echo "pass"; } ?> --EXPECT-- pass
💾 Save Changes
❌ Cancel