Magento - 警告:除以零Gd2.php [重复]

This question already has an answer here:

I have a problem in my store, and it's generating a division by zero error in the PHP file called Gd2.php

Warning: Division by zero in /home/domain/public_html/lib/Varien/Image/Adapter/Gd2.php on line 379

if ($this->_keepAspectRatio) {
    // do not make picture bigger, than it is, if required
    if ($this->_constrainOnly) {
        if (($frameWidth >= $this->_imageSrcWidth) && ($frameHeight >= $this->_imageSrcHeight)) {
            $dstWidth  = $this->_imageSrcWidth;
            $dstHeight = $this->_imageSrcHeight;
        }
    }
    // keep aspect ratio
    if ($this->_imageSrcWidth / $this->_imageSrcHeight >= $frameWidth / $frameHeight) {// <- Line 379
        $dstHeight = round(($dstWidth / $this->_imageSrcWidth) * $this->_imageSrcHeight);
    } else {
        $dstWidth = round(($dstHeight / $this->_imageSrcHeight) * $this->_imageSrcWidth);
    }
}
</div>

Maybe you specified wrong image size but most likely source file is not image or image have not recornized format