Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Get image height
<?php imagesy(GdImage $image): int
<?php     {

        $this->setOutput(new Size(

            imagesx($image->getCore()),

            imagesy($image->getCore())

        ));



        return true;
<?php     public function gdResourceToTruecolor(&$resource)

    {

        $width = imagesx($resource);

        $height = imagesy($resource);




        $canvas = imagecreatetruecolor($width, $height);
<?php     public function cloneCore($core)

    {

        $width = imagesx($core);

        $height = imagesy($core);

        $clone = imagecreatetruecolor($width, $height);

        imagealphablending($clone, false);

        imagesavealpha($clone, true);