1

我在让 CutyCapt 使用 SSL URL 时遇到问题,我有最新版本的 CutyCapt ( CutyCapt.cpp 10 2013-07-14 21:57:37Z),当我尝试使用以下命令获取带有 SSL 的 URL 时,它与所有非 SSL URL 完美配合:

./xvfb-run ./CutyCapt --min-width=1280 --min-height=720 --max-wait=6000 \
     --url="https://apple.com" --out="testssl.jpg"

我收到以下错误:

QPainter::begin: Paint device returned engine == 0, type: 3

QPainter::setRenderHint: Painter must be active to set rendering hints

QPainter::setBrush: Painter not active

QPainter::pen: Painter not active

QPainter::setPen: Painter not active

QPainter::end: Painter not active, aborted

./xvfb-run: line 171: kill: (6557) - No such process

注意:当我在没有 HTTPS 的情况下运行它时,它运行良好:

 ./xvfb-run ./CutyCapt --min-width=1280 --min-height=720 --max-wait=6000 \
     --url="http://apple.com" --out="testssl.jpg"

有什么建议么?提前致谢!

4

1 回答 1

0

对于像我这样偶然发现这一点的其他人。

安装 Qt5(你将需要它)。你会遇到几个包问题,只需用谷歌搜索每个错误,你就会修复它们(你会多次回到 StackOverflow 上)。

之后,安装最新的 CutyCapt,并使用 --insecure 参数运行它。这在 Ubuntu 14.04 上对我有用。

于 2015-09-11T15:43:24.860 回答