发布网友 发布时间:2022-04-22 14:11
共2个回答
热心网友 时间:2023-11-08 06:32
<?php
$ie = new COM("InternetExplorer.Application") or die("Can't start Internet Explorer");
try {
$handle = $ie->HWND;
$ie->Visible = true;
$ie->Navigate();//你的页面
while ($ie->Busy) {
com_message_pump(4000);
}
} catch (com_exception $e) {
echo $e;
}
$im = imagegrabwindow($handle, 0);
imagepng($im, "ie.png");
$ie->Quit();
?>
热心网友 时间:2023-11-08 06:32
我的开启"gd库"和"桌面交互"了 为什么还不行啊 还是黑的