dongsong4418 2013-07-10 07:04
浏览 15
已采纳

允许用户在图像上编写自定义文本

So what i want to do is to have my users write something in a text field and whatever they write there goes on the image so it becomes part of the image, and they can save it to their computer.

I'm going to use a field like this

<input type='text' id='Text' name='Text' maxlength="10">
  • 写回答

3条回答 默认 最新

  • dongzhang7382 2013-07-10 07:24
    关注

    this full example let's you

    1.write the text you want

    2.add an image

    (FileReader,Canvas)needs modern browsers

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title></title>
    <script>
    var
    maxSize=600, // Max width or height of the image
    font='italic small-caps bold 40px/50px arial', // font style
    fontColor='white', // font color
    textX=50, // text x position
    textY=50, // text y position
    h=function(e){
     var fr=new FileReader();
     fr.onload=function(e){
      var img=new Image();
      img.onload=function(){
       var r=maxSize/Math.max(this.width,this.height),
       w=Math.round(this.width*r),
       h=Math.round(this.height*r),
       c=document.createElement("canvas"),cc=c.getContext("2d");
       c.width=w;c.height=h;
       cc.drawImage(this,0,0,w,h);
    
       cc.font=font;
       cc.fillStyle=fontColor;
       cc.fillText(document.getElementById('t').value,textX,textY);
    
       this.src=c.toDataURL();
       document.body.appendChild(this);
      }
      img.src=e.target.result;
     }
     fr.readAsDataURL(e.target.files[0]);
    }
    window.onload=function(){
     document.getElementById('f').addEventListener('change',h,false);
    }
    </script>
    </head>
    <body>
    1.write text
    <input type="text" id="t">
    2.add image
    <input type="file" id="f">
    </body>
    </html>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序