玄之 发表于 2024-12-31 21:08:59

2025 新年好!(可复制源代码)




部分源码展示
      letter: function (l) {
          var s = 0;

          setFontSize(fontSize);
          s = Math.min(fontSize,
            (shapeCanvas.width / shapeContext.measureText(l).width) * 0.8 * fontSize,
            (shapeCanvas.height / fontSize) * (isNumber(l) ? 1 : 0.45) * fontSize);
          setFontSize(s);

          shapeContext.clearRect(0, 0, shapeCanvas.width, shapeCanvas.height);
          shapeContext.fillText(l, shapeCanvas.width / 2, shapeCanvas.height / 2);

          return processCanvas();
      },

      rectangle: function (w, h) {
          var dots = [],
            width = gap * w,
            height = gap * h;下载地址
夸克网盘UC网盘
页: [1]
查看完整版本: 2025 新年好!(可复制源代码)