Как разделить APNG на png изображения и конвертировать в анимированный gif с помощью PHP - PullRequest
0 голосов
/ 16 мая 2019

Я хочу преобразовать apng в gif на imagemagick, но я не знаю, как это сделать

Я вижу Разделение APNG на png изображения с помощью PHP Я пробую это, но это все еще не работает в моем изображении Я что-то вроде
1.ezgif.com / apng-to-gif
2.aconvert.com/image/apng-to-gif

<?php
function splitapng($data) {
  $parts = array();

  // Save the PNG signature   
  $signature = substr($data, 0, 8);
  $offset = 8;
  $size = strlen($data);
  while ($offset < $size) {
    // Read the chunk length
    $length = substr($data, $offset, 4);
    $offset += 4;

    // Read the chunk type
    $type = substr($data, $offset, 4);
    $offset += 4;

    // Unpack the length and read the chunk data including 4 byte CRC
    $ilength = unpack('Nlength', $length);
    $ilength = $ilength['length'];
    $chunk = substr($data, $offset, $ilength+4); 
    $offset += $ilength+4;

    if ($type == 'IHDR')
      $header = $length . $type . $chunk;  // save the header chunk
    else if ($type == 'IEND')
      $end = $length . $type . $chunk;     // save the end chunk
    else if ($type == 'IDAT') 
      $parts[] = $length . $type . $chunk; // save the first frame
    else if ($type == 'fdAT') {
      // Animation frames need a bit of tweaking.
      // We need to drop the first 4 bytes and set the correct type.

      $length = pack('N', $ilength-4);
      $type = 'IDAT';
      $chunk = substr($chunk,4);
      $parts[] = $length . $type . $chunk;
    }
  }

  // Now we just add the signature, header, and end chunks to every part.
  for ($i = 0; $i < count($parts); $i++) {
    $parts[$i] = $signature . $header . $parts[$i] . $end;
  }

  return $parts;
}
$filename = 'A.png';

$handle = fopen($filename, 'rb');
$filesize = filesize($filename);
$data = fread($handle, $filesize);
fclose($handle);

$parts = splitapng($data);

for ($i = 0; $i < count($parts); $i++) {
  $handle = fopen("part-$i.png",'wb');
  fwrite($handle,$parts[$i]);
  fclose($handle);
}


?>

1 Ответ

0 голосов
/ 18 мая 2019

я загружаю apng2gif
и поставить его с моим php с этим кодом

<?php
header("Content-Type:text/html; charset=utf-8");


$link = substr($_POST["link"],0,-7).'_animation'.substr($_POST["link"],-7);


$linkname = substr($link,57,-32);
function link_code($link) {
  $headers = get_headers($link);
  return substr($headers[0], 9, 3);
}

$link_code = link_code($link);

if( $link_code == 200 ) {
file_put_contents($linkname.".png", fopen($link, 'r'));
  $x = iconv("cp950","UTF-8",shell_exec("apng2gif ".$linkname.".png ".$linkname.".gif"));
  echo "OKAY!";
}
else{
  echo "Nokay!";
}
?>

Может использовать ссылку AJAX POST, чтобы выполнить apng2gif и проверить, живо это или нет
спасибо fmw42: D

...