search
HomeWeb Front-endHTML TutorialHow to implement an excel-like table control in the web

  Execl功能非常强大,内置的很多函数或公式可以大大提高对数据的加工处理能力。那么在web中有没有类似的控件呢?经过一番搜寻,发现handsontable具备了基本的excel功能支持公式,同时能对数据进行实时编辑。另外支持拖动复制、Ctrl+C 、Ctrl+V 等等。在浏览器支持方面,它支持以下的浏览器: IE7+, FF, Chrome, Safari, Opera。

     首先引入相关库文件,公式支持不包含在handsontable.full.js中,需要单独引入:

<span style="color: #008080;"> 1</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/jquery/jquery-1.10.2.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 2</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/handsontable/handsontable.full.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 3</span> <span style="color: #0000ff;"><span style="color: #800000;">link </span><span style="color: #ff0000;">rel</span><span style="color: #0000ff;">="stylesheet"</span><span style="color: #ff0000;"> media</span><span style="color: #0000ff;">="screen"</span><span style="color: #ff0000;"> href</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/handsontable/handsontable.full.css"</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 4</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/lodash/lodash.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 5</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/underscore.string/underscore.string.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 6</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/moment/moment.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 7</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/numeral/numeral.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 8</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/numericjs/numeric.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;"> 9</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/js-md5/md5.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">10</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/jstat/jstat.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">11</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/lib/formulajs/formula.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">12</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/js/parser.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">13</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/RuleJS/js/ruleJS.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">14</span> <span style="color: #0000ff;"><span style="color: #800000;">script </span><span style="color: #ff0000;">src</span><span style="color: #0000ff;">="http://handsontable.github.io/handsontable-ruleJS/lib/handsontable/handsontable.formula.js"</span><span style="color: #0000ff;">></span><span style="color: #800000;">script</span><span style="color: #0000ff;">></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>

   在HTML中放置一个Div容器来存放handsontable控件:

<span style="color: #008080;">1</span> <span style="color: #0000ff;"><span style="color: #800000;">body</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">2</span>     <span style="color: #0000ff;"><span style="color: #800000;">div </span><span style="color: #ff0000;">id</span><span style="color: #0000ff;">="handsontable-code"</span><span style="color: #0000ff;">></span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span>
<span style="color: #008080;">3</span> <span style="color: #0000ff;"></span><span style="color: #800000;">body</span><span style="color: #0000ff;">></span></span></span>

   在javascript代码中,首先获取div容器,然后创建表格控件:

<span style="color: #008080;"> 1</span>   <script type="text/javascript">
<span style="color: #008080;"> 2       $(document).ready(<span style="color: #0000ff;">function<span style="color: #000000;"> () {
<span style="color: #008080;"> 3 
<span style="color: #008080;"> 4   <span style="color: #0000ff;">var data1 =<span style="color: #000000;"> [
<span style="color: #008080;"> 5     ['=$B$2', "Maserati", "Mazda", "return 1+2;", 'return DataAccess.getScalar("select top 1 name from Cloud_Users where cellPhone=15895211486");', "=A$1"<span style="color: #000000;">],
<span style="color: #008080;"> 6     [2009, 0, 2941, 4303, 354, 5814<span style="color: #000000;">],
<span style="color: #008080;"> 7     [2010, 5, 2905, 2867, '=SUM(A4,2,3)', '=$B1'<span style="color: #000000;">],
<span style="color: #008080;"> 8     [2011, 4, 2517, 4822, 552, 6127<span style="color: #000000;">],
<span style="color: #008080;"> 9     [2012, '=SUM(A2:A5)', '=SUM(B5,E3)', '=A2/B2', 12, 4151<span style="color: #000000;">]
<span style="color: #008080;">10 <span style="color: #000000;">  ];
<span style="color: #008080;">11 
<span style="color: #008080;">12 
<span style="color: #008080;">13            <span style="color: #0000ff;">function<span style="color: #000000;"> negativeValueRenderer(instance, td, row, col, prop, value, cellProperties) {
<span style="color: #008080;">14                Handsontable.renderers.TextRenderer.apply(<span style="color: #0000ff;">this<span style="color: #000000;">, arguments);
<span style="color: #008080;">15 
<span style="color: #008080;">16                <span style="color: #0000ff;">var escaped =<span style="color: #000000;"> Handsontable.helper.stringify(value),
<span style="color: #008080;">17 <span style="color: #000000;">               newvalue;
<span style="color: #008080;">18 
<span style="color: #008080;">19                <span style="color: #0000ff;">if (escaped.indexOf('return') === 0<span style="color: #000000;">) {
<span style="color: #008080;">20                    <span style="color: #008000;">//<span style="color: #008000;">计算列为只读
<span style="color: #008080;">21                    <span style="color: #008000;">//<span style="color: #008000;">cellProperties.readOnly = true;
<span style="color: #008080;">22                    td.style.background = '#EEE'<span style="color: #000000;">;
<span style="color: #008080;">23                    newvalue = document.createElement('span'<span style="color: #000000;">);
<span style="color: #008080;">24 <span style="color: #000000;">                   $.ajax({
<span style="color: #008080;">25                        <span style="color: #008000;">//<span style="color: #008000;">提交数据的类型 POST GET
<span style="color: #008080;">26                        type: "POST"<span style="color: #000000;">,
<span style="color: #008080;">27                        <span style="color: #008000;">//<span style="color: #008000;">提交的网址
<span style="color: #008080;">28                        url: "/services/CSEngine.ashx"<span style="color: #000000;">,
<span style="color: #008080;">29                        <span style="color: #008000;">//<span style="color: #008000;">提交的数据
<span style="color: #008080;">30 <span style="color: #000000;">                       data: { code: value, code2: escaped },
<span style="color: #008080;">31                        <span style="color: #008000;">//<span style="color: #008000;">返回数据的格式
<span style="color: #008080;">32                        datatype: "html",<span style="color: #008000;">//<span style="color: #008000;">"xml", "html", "script", "json", "jsonp", "text".
<span style="color: #008080;">33                        <span style="color: #008000;">//<span style="color: #008000;">在请求之前调用的函数
<span style="color: #008080;">34                        <span style="color: #008000;">//<span style="color: #008000;">beforeSend: function () { $("#msg").html("logining"); },
<span style="color: #008080;">35                        <span style="color: #008000;">//<span style="color: #008000;">成功返回之后调用的函数             
<span style="color: #008080;">36                        success: <span style="color: #0000ff;">function<span style="color: #000000;"> (data) {
<span style="color: #008080;">37                            <span style="color: #008000;">//<span style="color: #008000;"> $("#msg").html(decodeURI(data));
<span style="color: #008080;">38                            newvalue.innerHTML =<span style="color: #000000;"> decodeURI(data);
<span style="color: #008080;">39 <span style="color: #000000;">                       },
<span style="color: #008080;">40                        <span style="color: #008000;">//<span style="color: #008000;">调用执行后调用的函数
<span style="color: #008080;">41                        complete: <span style="color: #0000ff;">function<span style="color: #000000;"> (XMLHttpRequest, textStatus) {
<span style="color: #008080;">42                            <span style="color: #008000;">//<span style="color: #008000;">alert(XMLHttpRequest.responseText);
<span style="color: #008080;">43                            <span style="color: #008000;">//<span style="color: #008000;"> alert(textStatus);
<span style="color: #008080;">44                            <span style="color: #008000;">//<span style="color: #008000;">HideLoading();
<span style="color: #008080;">45 <span style="color: #000000;">                       },
<span style="color: #008080;">46                        <span style="color: #008000;">//<span style="color: #008000;">调用出错执行的函数
<span style="color: #008080;">47                        error: <span style="color: #0000ff;">function<span style="color: #000000;"> () {
<span style="color: #008080;">48                            <span style="color: #008000;">//<span style="color: #008000;">请求出错处理
<span style="color: #008080;">49                            <span style="color: #008000;">//<span style="color: #008000;"> alert('error')
<span style="color: #008080;">50 <span style="color: #000000;">                       }
<span style="color: #008080;">51 <span style="color: #000000;">                   });
<span style="color: #008080;">52                  
<span style="color: #008080;">53 
<span style="color: #008080;">54                    Handsontable.Dom.addEvent(newvalue, 'mousedown', <span style="color: #0000ff;">function<span style="color: #000000;"> (e) {
<span style="color: #008080;">55                        e.preventDefault(); <span style="color: #008000;">//<span style="color: #008000;"> prevent selection quirk
<span style="color: #008080;">56 <span style="color: #000000;">                   });
<span style="color: #008080;">57 
<span style="color: #008080;">58 <span style="color: #000000;">                   Handsontable.Dom.empty(td);
<span style="color: #008080;">59 <span style="color: #000000;">                   td.appendChild(newvalue);
<span style="color: #008080;">60 <span style="color: #000000;">               }
<span style="color: #008080;">61                <span style="color: #008000;">//<span style="color: #008000;"> if row contains negative number
<span style="color: #008080;">62                <span style="color: #0000ff;">if (parseInt(value, 10) < 0<span style="color: #000000;">) {
<span style="color: #008080;">63                    <span style="color: #008000;">//<span style="color: #008000;"> add class "negative"
<span style="color: #008080;">64                    td.className = 'negative'<span style="color: #000000;">;
<span style="color: #008080;">65 <span style="color: #000000;">               }
<span style="color: #008080;">66 
<span style="color: #008080;">67               
<span style="color: #008080;">68 <span style="color: #000000;">           }
<span style="color: #008080;">69 
<span style="color: #008080;">70 
<span style="color: #008080;">71 
<span style="color: #008080;">72   <span style="color: #008000;">//<span style="color: #008000;">类似excel进行拖放,公式会变
<span style="color: #008080;">73   <span style="color: #0000ff;">var container1 = $('#handsontable-code'<span style="color: #000000;">);
<span style="color: #008080;">74   Handsontable.renderers.registerRenderer('negativeValueRenderer'<span style="color: #000000;">, negativeValueRenderer);
<span style="color: #008080;">75 <span style="color: #000000;">  container1.handsontable({
<span style="color: #008080;">76 <span style="color: #000000;">    data: data1,
<span style="color: #008080;">77     minSpareRows: 1<span style="color: #000000;">,
<span style="color: #008080;">78     colHeaders: <span style="color: #0000ff;">true<span style="color: #000000;">,
<span style="color: #008080;">79     rowHeaders: <span style="color: #0000ff;">true<span style="color: #000000;">,
<span style="color: #008080;">80     contextMenu: <span style="color: #0000ff;">true<span style="color: #000000;">,
<span style="color: #008080;">81     manualColumnResize: <span style="color: #0000ff;">true<span style="color: #000000;">,
<span style="color: #008080;">82     formulas: <span style="color: #0000ff;">true<span style="color: #000000;">,
<span style="color: #008080;">83       cells: <span style="color: #0000ff;">function<span style="color: #000000;"> (row, col, prop) {
<span style="color: #008080;">84                    <span style="color: #0000ff;">var cellProperties =<span style="color: #000000;"> {};
<span style="color: #008080;">85                    <span style="color: #0000ff;">var escaped = Handsontable.helper.stringify(<span style="color: #0000ff;">this<span style="color: #000000;">.instance.getData()[row][col]);
<span style="color: #008080;">86                    <span style="color: #0000ff;">if (escaped.indexOf('return')===0<span style="color: #000000;">) {
<span style="color: #008080;">87                        cellProperties.renderer = "negativeValueRenderer"<span style="color: #000000;">; 
<span style="color: #008080;">88 <span style="color: #000000;">                   }
<span style="color: #008080;">89     
<span style="color: #008080;">90 
<span style="color: #008080;">91                    <span style="color: #0000ff;">return<span style="color: #000000;"> cellProperties;
<span style="color: #008080;">92 <span style="color: #000000;">               }
<span style="color: #008080;">93 <span style="color: #000000;">  });
<span style="color: #008080;">94   
<span style="color: #008080;">95 <span style="color: #000000;">});
<span style="color: #008080;">96       
<span style="color: #008080;">97    </script>

其中 =SUM(B5,E3)的公式是RuleJs提供的,return 1+2是自己实现的C#代码脚本,需要单击解析:
<span style="color: #008080;"> 1</span> <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">class</span><span style="color: #000000;"> CSEngine : IHttpHandler {
</span><span style="color: #008080;"> 2</span>     <span style="color: #0000ff;">private</span> <span style="color: #0000ff;">static</span> <span style="color: #0000ff;">int</span> count = <span style="color: #800080;">0</span><span style="color: #000000;">;
</span><span style="color: #008080;"> 3</span>     <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">void</span><span style="color: #000000;"> ProcessRequest (HttpContext context) {
</span><span style="color: #008080;"> 4</span>         context.Response.ContentType = <span style="color: #800000;">"</span><span style="color: #800000;">text/plain</span><span style="color: #800000;">"</span><span style="color: #000000;">;
</span><span style="color: #008080;"> 5</span> 
<span style="color: #008080;"> 6</span>         <span style="color: #0000ff;">try</span>
<span style="color: #008080;"> 7</span> <span style="color: #000000;">        {
</span><span style="color: #008080;"> 8</span>             count++<span style="color: #000000;">;
</span><span style="color: #008080;"> 9</span>             <span style="color: #0000ff;">string</span> ret = <span style="color: #800000;">""</span><span style="color: #000000;">;
</span><span style="color: #008080;">10</span>             <span style="color: #0000ff;">string</span> code = context.Request[<span style="color: #800000;">"</span><span style="color: #800000;">code</span><span style="color: #800000;">"</span><span style="color: #000000;">].ToString();
</span><span style="color: #008080;">11</span>             <span style="color: #0000ff;">if</span> (<span style="color: #0000ff;">string</span><span style="color: #000000;">.IsNullOrEmpty(code))
</span><span style="color: #008080;">12</span> <span style="color: #000000;">            {
</span><span style="color: #008080;">13</span>                 ret = <span style="color: #800000;">"</span><span style="color: #800000;">参数错误</span><span style="color: #800000;">"</span><span style="color: #000000;">;
</span><span style="color: #008080;">14</span> <span style="color: #000000;">            }
</span><span style="color: #008080;">15</span>             <span style="color: #0000ff;">else</span>
<span style="color: #008080;">16</span> <span style="color: #000000;">            {
</span><span style="color: #008080;">17</span>                 ScriptOptions options =<span style="color: #000000;"> ScriptOptions.Default
</span><span style="color: #008080;">18</span> <span style="color: #000000;">                  .AddReferences(
</span><span style="color: #008080;">19</span>                       Assembly.GetAssembly(<span style="color: #0000ff;">typeof</span><span style="color: #000000;">(DBServices.DataAccess))
</span><span style="color: #008080;">20</span> <span style="color: #000000;">                   )
</span><span style="color: #008080;">21</span>                   <span style="color: #008000;">//</span><span style="color: #008000;">.AddImports("System.Data")
</span><span style="color: #008080;">22</span>                   <span style="color: #008000;">//</span><span style="color: #008000;">.AddImports("System.Data.SqlClient")</span>
<span style="color: #008080;">23</span>                   .AddImports(<span style="color: #800000;">"</span><span style="color: #800000;">DBServices</span><span style="color: #800000;">"</span><span style="color: #000000;">);
</span><span style="color: #008080;">24</span>                 <span style="color: #0000ff;">var</span> state =<span style="color: #000000;"> CSharpScript.RunAsync(code, options).Result.ReturnValue;
</span><span style="color: #008080;">25</span>                 ret =<span style="color: #000000;"> state.ToString();
</span><span style="color: #008080;">26</span> 
<span style="color: #008080;">27</span>                 state = <span style="color: #0000ff;">null</span><span style="color: #000000;">;
</span><span style="color: #008080;">28</span>                 options = <span style="color: #0000ff;">null</span><span style="color: #000000;">;
</span><span style="color: #008080;">29</span> <span style="color: #000000;">            }
</span><span style="color: #008080;">30</span> <span style="color: #000000;">            Console.WriteLine(count);
</span><span style="color: #008080;">31</span> <span style="color: #000000;">            context.Response.Write(ret);
</span><span style="color: #008080;">32</span> <span style="color: #000000;">        }
</span><span style="color: #008080;">33</span>         <span style="color: #0000ff;">catch</span><span style="color: #000000;">(Exception ex)
</span><span style="color: #008080;">34</span> <span style="color: #000000;">        {
</span><span style="color: #008080;">35</span>             <span style="color: #008000;">//</span><span style="color: #008000;">error</span>
<span style="color: #008080;">36</span> <span style="color: #000000;">            Console.WriteLine(count);
</span><span style="color: #008080;">37</span> <span style="color: #000000;">        }
</span><span style="color: #008080;">38</span> <span style="color: #000000;">    }
</span><span style="color: #008080;">39</span> 
<span style="color: #008080;">40</span>     <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">bool</span><span style="color: #000000;"> IsReusable {
</span><span style="color: #008080;">41</span>         <span style="color: #0000ff;">get</span><span style="color: #000000;"> {
</span><span style="color: #008080;">42</span>             <span style="color: #0000ff;">return</span> <span style="color: #0000ff;">false</span><span style="color: #000000;">;
</span><span style="color: #008080;">43</span> <span style="color: #000000;">        }
</span><span style="color: #008080;">44</span> <span style="color: #000000;">    }
</span><span style="color: #008080;">45</span> 
<span style="color: #008080;">46</span> }

运行代码,如下:

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.