我在让 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"
有什么建议么?提前致谢!