⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 png2gd.phpt

📁 PHP v6.0 For Linux 运行环境:Win9X/ WinME/ WinNT/ Win2K/ WinXP
💻 PHPT
字号:
--TEST--png <--> gd1/gd2 conversion test--SKIPIF--<?php 	if (!extension_loaded('gd')) {		die("skip gd extension not available.");	}	if (!GD_BUNDLED) {		die("skip external GD libraries always fail");	}		if (!function_exists("imagecreatefrompng") || !function_exists("imagepng")) {		die("skip png support unavailable");	}?>--FILE--<?php	$cwd = dirname(__FILE__);	echo "PNG to GD1 conversion: ";	echo imagegd(imagecreatefrompng($cwd . "/conv_test.png"), $cwd . "/test.gd1") ? 'ok' : 'failed';	echo "\n";		echo "PNG to GD2 conversion: ";	echo imagegd2(imagecreatefrompng($cwd . "/conv_test.png"), $cwd . "/test.gd2") ? 'ok' : 'failed';	echo "\n";		echo "GD1 to PNG conversion: ";	echo imagepng(imagecreatefromgd($cwd . "/test.gd1"), $cwd . "/test_gd1.png") ? 'ok' : 'failed';	echo "\n";		echo "GD2 to PNG conversion: ";	echo imagepng(imagecreatefromgd2($cwd . "/test.gd2"), $cwd . "/test_gd2.png") ? 'ok' : 'failed';	echo "\n";		@unlink($cwd . "/test.gd1");	@unlink($cwd . "/test.gd2");	@unlink($cwd . "/test_gd1.png");	@unlink($cwd . "/test_gd2.png");?>--EXPECT--PNG to GD1 conversion: okPNG to GD2 conversion: okGD1 to PNG conversion: okGD2 to PNG conversion: ok

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -