美文网首页
html转图片

html转图片

作者: 木火应 | 来源:发表于2022-04-09 11:28 被阅读0次

    python中html转图片,以下是在centos7中步骤

    • pip安装imgkit,pip install imgkit
    • 通过以下步骤安装imgkit,并配置环境变量
    [root@mhy ~]wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
    [root@mhy ~]tar xvfJ wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
    [root@mhy ~]cd wkhtmltox/bin
    [root@mhy bin] chmod +x wkhtmlto*
    [root@mhy bin]sudo ln -s wkhtmltopdf  /usr/bin/wkhtmltopdf
    [root@mhy bin]sudo ln -s wkhtmltoimage /usr/bin/wkhtmltoimage
    
    • 分别输入命令wkhtmltopdfwkhtmltoimage检测是否安装成功

      成功
    • 测试

    >import imgkit
    >imgkit.from_url('http://www.baidu.com', 'out.jpg')
    >imgkit.from_file('test.html', 'out.jpg')
    >imgkit.from_string('Hello!', 'out.jpg')
    

    相关文章

      网友评论

          本文标题:html转图片

          本文链接:https://www.haomeiwen.com/subject/iaaakrtx.html