summaryrefslogtreecommitdiff
path: root/ext/gd/tests/png2gd.phpt
blob: 0df1e0611a2231966d54aac3d11e5f4834d54166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--TEST--
png <--> gd1/gd2 conversion test
--SKIPIF--
<?php
    if (!extension_loaded('gd')) {
        die("skip gd extension not available.");
    }

    if (!function_exists("imagecreatefrompng") || !function_exists("imagepng")) {
        die("skip png support unavailable");
    }
?>
--FILE--
<?php
    $cwd = __DIR__;

    echo "PNG to GD1 conversion: ";
    echo imagegd(imagecreatefrompng($cwd . "/conv_test.png"), $cwd . "/test_png.gd1") ? 'ok' : 'failed';
    echo "\n";

    echo "PNG to GD2 conversion: ";
    echo imagegd2(imagecreatefrompng($cwd . "/conv_test.png"), $cwd . "/test_png.gd2") ? 'ok' : 'failed';
    echo "\n";

    echo "GD1 to PNG conversion: ";
    echo imagepng(imagecreatefromgd($cwd . "/test_png.gd1"), $cwd . "/test_gd1.png") ? 'ok' : 'failed';
    echo "\n";

    echo "GD2 to PNG conversion: ";
    echo imagepng(imagecreatefromgd2($cwd . "/test_png.gd2"), $cwd . "/test_gd2.png") ? 'ok' : 'failed';
    echo "\n";

    @unlink($cwd . "/test_png.gd1");
    @unlink($cwd . "/test_png.gd2");
    @unlink($cwd . "/test_gd1.png");
    @unlink($cwd . "/test_gd2.png");
?>
--EXPECT--
PNG to GD1 conversion: ok
PNG to GD2 conversion: ok
GD1 to PNG conversion: ok
GD2 to PNG conversion: ok