I am able to export text and image to pdf using client side + server side logic.
For pdf client side
$http.get( url, {cache: false} )
.success( function( data )
{
if(success){
window.location.href = 'service path';
}
})
I am able to generate pdf .
But no idea how to export image and content into word file .I have googled but didnt get any answer .I am converting images into binary format.
Is it possible to do in client side .Please suggest