Sha256: 101a0a8fd74a2e7687fe490a0902d022c4eb5739d2dc7ee72ab7fa28d450e3f2

Contents?: true

Size: 1.03 KB

Versions: 17

Compression:

Stored size: 1.03 KB

Contents

var page = require('webpage').create(),
    system = require('system');

if (system.args.length < 7) {
    console.log('Usage: printmargins.js URL filename LEFT TOP RIGHT BOTTOM');
    console.log('  margin examples: "1cm", "10px", "7mm", "5in"');
    phantom.exit(1);
} else {
    var address = system.args[1];
    var output = system.args[2];
    var marginLeft = system.args[3];
    var marginTop = system.args[4];
    var marginRight = system.args[5];
    var marginBottom = system.args[6];
    page.viewportSize = { width: 600, height: 600 };
    page.paperSize = {
        format: 'A4',
        margin: {
            left: marginLeft,
            top: marginTop,
            right: marginRight,
            bottom: marginBottom
        }
    };
    page.open(address, function (status) {
        if (status !== 'success') {
            console.log('Unable to load the address!');
        } else {
            window.setTimeout(function () {
                page.render(output);
                phantom.exit();
            }, 200);
        }
    });
}

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
hooch-0.4.2 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.4.1 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.4.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.3.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.2.1 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.2.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.1.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.0.8 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.0.7 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
hooch-0.0.6 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.16 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.15 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.14 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.13 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.12 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.11 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js
entangled-0.0.10 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/printmargins.js