Joining Multiple Images into one with a PHP script

前端 未结 2 817
自闭症患者
自闭症患者 2021-01-16 23:13

I have this test page http://thechozenfew.net/projects/write_font.php that generates the text in the input box as a font. Each letter is a different picture, How would i joi

2条回答
  •  死守一世寂寞
    2021-01-16 23:55

    So here what i ended up with

    = 1){
       $offset = $offset + $width;
      }
     }unset($a);
    // Save it
     //Imagepng($photoImage, 'done.png'); 
    // Output to browser 
     Imagepng($photoImage); 
    
    //Destroy all Image Objects
     foreach($image['obj'] as $a){
      ImageDestroy($a);
     }
     ImageDestroy($photoImage);
    ?>
    

    The Live Link http://thechozenfew.net/projects/font/ImageMerge.php?name=it%20works

提交回复
热议问题