javascript - Screen Capture of HTML/JS Application - Silverlight -
i create button takes screen captures of map applicaiton. map built using google map js api.
this fiddle simple example used demonstrate screengrab functionality
var map; var mapoptions = { zoom: 8, center: new google.maps.latlng(-34.397, 150.644) }; map = new google.maps.map(document.getelementbyid('map-canvas'), mapoptions);
i spent lot of time trying create screengrab function using html2canvas lib had difficult time creating proxy. reason exploring other screengrab options.
would possible create screen grab function using silverlight? somehow incorporate silverlight application screen grab function? other suggestions?
Comments
Post a Comment