var koreanAndEng = "한글" + "Eng"; var htmlString = '<html><head><meta charset="UTF-8"></head><body><h1>' + korean + '</h1></body></html>'; webshot(htmlString, fileName, function(err) {if (err) {});
I use this code to create png file but It doesn't show Korean but show only english like "Eng" in linux ubuntu 14.04.
This code is working in mac os but my linux server.
var koreanAndEng = "한글" + "Eng";
var htmlString = '<html><head><meta charset="UTF-8"></head><body><h1>' + korean + '</h1></body></html>';
webshot(htmlString, fileName, function(err) {if (err) {});
I use this code to create png file but It doesn't show Korean but show only english like "Eng" in linux ubuntu 14.04. This code is working in mac os but my linux server.