PHP 图像缩放 - 指数比例

PHP Image Zoom - Exponential scale

我正在尝试计算 12 张图像之间的缩放效果。每个图像都比之前的图像大 100%。它接近完美,但只有图像之间的过渡存在问题。每张图片之间都不是流畅的缩放。 请看视频:http://youtu.be/dUBbDjewpO0

我认为指数表达式 pow() 出于某种原因不协调。 这是 PHP 脚本,但我找不到问题所在:

 <?php
    $imageFiles=array(
     '1.jpg',
     '2.jpg',
     '3.jpg',        
     '4.jpg');
 $targetFrameRate=$targetDuration='18';
 $imageCount = count($imageFiles);
 $totalFrames        = ($targetFrameRate*$targetDuration);
 $sourceIndex  = 0;
 $firstIndex   = 1;
 $lastIndex    = $totalFrames; //==total frames
 $currentScale = 1;//image scaling for first scale 
 $deltaScale   = ((($imageCount-1)*($scaleFactor-$currentScale))/$totalFrames);

  for ($i=$firstIndex; $i<=$lastIndex; $i++) {

// prepare filename

$filename = createImageFilename($i, $imageType);

// determine source..
if ($i == $firstIndex) {
    $newSourceIndex = 0;
}
else if ($i == $lastIndex) {
    $newSourceIndex = ($imageCount-1);
}
else {
     $newSourceIndex = intval(($i*($imageCount-1))/$totalFrames);

}
// create frame..
if ($newSourceIndex != $sourceIndex) {
    $sourceIndex  = $newSourceIndex;
    $currentScale = pow($scaleFactor, $sourceIndex);
    $nextScale    = pow($scaleFactor, ($sourceIndex+1));
    $deltaScale   = ((($imageCount-1)*($nextScale-$currentScale))/$totalFrames);

    copyImage($imageFiles[$sourceIndex], 
              sprintf('%s/%s', $outputDir, $filename), 
              $imageWidth, 
              $imageHeight, 
              $imageType);
}
else {
    createImage($imageFiles[$sourceIndex], 
                sprintf('%s/%s', $outputDir, $filename), 
                ($currentScale/pow($scaleFactor, $sourceIndex)),
                $imageWidth, 
                $imageHeight, 
                $imageType);
}

//DEBUG: buffer some values for optional debug-output
if (isDebugOutputEnabled()) {
    $debug_idx[$i] = $filename;
    $debug_inf[$i] = sprintf('sourceIndex=%d , scale=%01.2f<br />', $sourceIndex, $currentScale);
}
// advance..
$currentScale += $deltaScale;
 }


 ?>

渲染很好

  shell_exec('ffmpeg -f image2 -i /var/www/htdocs/image2/i%d.jpg -s 1280x720 -movflags faststart -b:v 5500k -r 18 output.flv');

问题出在您将增量添加到比例尺,而不是每帧乘以一个常数:

$currentScale += $deltaScale;

指数缩放意味着您在给定的恒定时间内将缩放增加一个常数 因子(不是差异),因此您需要将该行更改为:

$currentScale *= $deltaScale;

并以不同的方式计算 $deltaScale

$deltaScale = pow($nextScale / $currentScale, ($imageCount-1) / $totalFrames);

这将计算图像之间比例差异的分数幂,因此当您将它与 $currentScale 值相乘时 $totalFrames / ($imageCount-1) 次(当前比例之间渲染的帧数和下一个比例),结果将增加 $nextScale / $currentScale.

简化:

因为整个动画的缩放比例是恒定的,所以 $deltaScale 在整个过程中都是恒定的,所以你可以像这样在循环外计算它:

$deltaScale = pow($scaleFactor, ($imageCount-1) / $totalFrames);