Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_image_type_to_extension

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-12T04:15:35Z

Updated

2019-09-12T04:15:35Z

<?php

// 创建图像实例
$im = imagecreatetruecolor(100, 100);

// 保存图像
imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG));

imagedestroy($im);

?>
INFO