user-image.js 592 B

123456789101112131415
  1. const roleColors = {"一般用戶":"#0088cc","資料庫上傳人員":"#f8701b","BIM上傳人員":"003cc8","部門管理員":"#400080","來賓":"#00b92e","系統管理員":"#e60086"};
  2. function addUserImage(name,role) {
  3. var canvas = document.createElement("canvas");
  4. canvas.width = 40;
  5. canvas.height = 40;
  6. var ctx = canvas.getContext('2d');
  7. ctx.fillStyle = "white";
  8. ctx.font = "30px Arial";
  9. var text = name;
  10. ctx.fillText(text, 5, 30);
  11. $(".img-circle").attr("src", canvas.toDataURL());
  12. $(".img-circle").css("background-color",roleColors[role])
  13. }