移植html2canavas-proxy for php

时间:2011-09-17 13:56:31

标签: php perl

有人可以帮我修改这个脚本:https://github.com/niklasvh/html2canvas-proxy/blob/master/python/html2canvas.py到php版本吗?

我不懂珍珠,所以对我来说很难。

谢谢!

1 个答案:

答案 0 :(得分:2)

我不知道google appengine有一个perl界面,但你可以使用firefox:)

use WWW::Mechanize::Firefox;

# The original line in the example
my $png = $mech->content_as_png();

# Method 1
my $png = $mech->element_as_png($mech->selector('html')); 

# Method 2
my $png = $mech->content_as_png(undef, 
                {left=>0,top=>0,width=>200, height=>200});