Imagick kullanarak tarayıcınıza şekilde yeniden animasyonlu gif çıktılamak

0 Cevap php

Ben on-the-fly tarayıcı animasyonlu gif ve çıkış yeniden boyutlandırma niyetinde. Benim sorunum resized görüntüyü kaydederken, iyi kalitede olduğunu, ancak tarayıcıya eğer echo o, bu kalitesiz ve animasyon kaldırılır. İşte kod:

header("Content-type:image/gif");
try
{
    /*** Read in the animated gif ***/
    $animation = new Imagick("images/nikks.gif");

    /*** Loop through the frames ***/
    foreach ($animation as $frame)
    {
        /*** Thumbnail each frame ***/
        $frame->thumbnailImage(200, 200);

        /*** Set virtual canvas size to 100x100 ***/
        $frame->setImagePage(200, 200, 0, 0);
    }

    /*** Write image to disk. Notice writeImages instead of writeImage ***/
    //$animation->writeImages("images/nikkyo1.gif",true);

    echo $animation;
}
catch(Exception $e)
{
    echo $e->getMessage();
}

0 Cevap