Home >Backend Development >PHP Tutorial >php Get SWF animation screenshot sample code

php Get SWF animation screenshot sample code

高洛峰
高洛峰Original
2016-12-27 12:58:151320browse

1. Download the attachment and install it, please see the help in the attachment
2. Copy the code into the appropriate location, generate the image, and figure out how to process it yourself;

$oldswf = "/uploads/swf/test.swf"; 
$oldjpg = "/uploads/litpic/test.jpg"; 
$flash2jpeg = new COM("SunCN.Flash2Jpeg"); 
if ($flash2jpeg) { 
$a = $flash2jpeg->Flash2Jpeg($oldswf, 150, 200, $oldjpg); 
if ($a) { 
$litpic = '/images/defaultpic.gif'; 
} else { 
$litpic = $oldjpg; 
} 
} else { 
$litpic = '/images/defaultpic.gif'; 
}

More php For articles related to obtaining SWF animation screenshot sample code, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php (7) PHP functionNext article:php (7) PHP function