I am trying to use phantomjs to turn html into pdf, and I have some html code with image src attributes that have "?" in them so that they can pass in info from the get array.
Example
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<img src="www.somewhere.com/pictures?id=1229384&key=somekey"/>
<div><a href="www.somewhere.com/pictures?id=1229384&key=somekey">link</a></div>
</body>
</html>
When I try to turn the html into a pdf using phantomJS rasterize.js it cuts the href and the src at the "?" and the stuff in the get information is not passed in, and thus the image does not appear.
Does anyone know how I can get passed this?