中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

長微博生成工具PHP源碼 根據(jù)文字生成長微博圖片

2019-07-23    來源:open-open

容器云強(qiáng)勢上線!快速搭建集群,上萬Linux鏡像隨意使用
<?php
error_reporting(7);
define('ROOT', getcwd());
define('BASEDIR', parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
if ($_POST['text']) {
    $ret  = array();
    $text = $_POST['text'];
    try {
        $ret['imgurl'] = text2img($text, (array) $_REQUEST['config']);
    }
    catch (Exception $e) {
        $ret['imgurl'] = print_r($e, true);
    }
    echo str_replace('\\/', '/', json_encode($ret));
    exit(0);
}
function text2img($text, $options = array())
{
    $text .= "\n-------------------------------\n";
    $text .= "http://iscup.com";
    $rows      = substr_count($text, "\n") + 1;
    $font_path = $options['fontfile'] ? $options['fontfile'] : ROOT . '/SIMSUN.TTC';
    if (!file_exists($font_path))
        throw new Exception(" 找不到字體文件:$font_path  ");
    $font_size       = $options['fontsize'] ? $options['fontsize'] : 12;
    $padding         = $options['padding'] ? $options['padding'] : 30;
    $row_plus_height = $options['row_plus_height'] ? $options['row_plus_height'] : 4;
    $border          = 1;
    $im_width        = 430;
    $im_height       = ($row_plus_height + ($font_size * 4) / 3) * $rows + ($padding + $border) * 2;
    $im              = @imagecreatetruecolor($im_width, $im_height);
    if (!$im)
        throw new Exception("初始化圖片失敗,請檢查 GD 配置");
    imagefilledrectangle($im, $border, $border, ($im_width - 2 * $border), ($im_height - 2 * $border), imagecolorallocate($im, 255, 255, 255));
    imagettftext($im, $font_size, 0, ($border + $padding), (($font_size * 4) / 3 + $border + $padding), imagecolorallocate($im, 0, 0, 0), $font_path, $text);
    $base_path      = '/files';
    $base_filename  = date("Y-m-d,H-i-s") . '.png';
    $short_filename = $base_path . '/' . $base_filename;
    $short_url      = rtrim(BASEDIR, '/') . $short_filename;
    @mkdir(ROOT . $base_path, 0777, true);
    $filename = ROOT . $short_filename;
    if (!imagepng($im, $filename)) {
        throw new Exception("創(chuàng)建圖片時出錯。");
    }
    @imagedestroy($im);
    return $short_url;
}
 
?>
 
<!DOCTYPE HTML><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>長微博工具</title>
<script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.6.2/jquery.min.js"></script>
</head>
<body>
<h1>長微博工具</h1>
<p><textarea name="text" id="text" rows="20" cols="60"></textarea></p>
<pre id="pre"></pre>
<p><a target="_blank" href="" id="url"></a></p>
<p><input type="button" id="format" value="格式化" /><input type="button" id="button" value="生成長微博" /> <br/><br/><br/><br/> <a href="http://changweibo.debake.com/" style="font-size:9px; color:#666; text-decoration:none">長微博</a></p>
<script type="text/javascript">
BIG_FONT_WIDTH = 44;
 
function f(v,w,c){
    c = 0;
    w = w || BIG_FONT_WIDTH;
    return v.replace(/[\S\s]/g,function(a){
        if(/[\r\n]/.test(a)) {
            c = -2;
            return "\r\n";
        }
        c += /[\x00-\xFF]/.test(a) ? 1 : 2;
        if(c>=w){
            c = 0;
            return "\r\n"+a;
        }
        return a;
    });
}
$(function(){
    $("#format").click(function(){$("#text").val(f($("#text").val()));});
    $("#button").click(function(){
        if($("#text").val().length<1){
            alert("無內(nèi)容");
        } else {
            $.ajax({
                type:"POST",
                url:location.pathname,
                data:"text="+$("#text").val(),
                dataType:"json",
                success:function(m){
                    if(m.message)$("#pre").innerHTML(m.message);
                    if(m.imgurl)$("#url").attr("href", m.imgurl).text(m.imgurl);
                }
            });
        }
    });
});
</script>
</body>
</html>

標(biāo)簽: [db:TAGG]

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點(diǎn)!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇:PHP抽獎程序概率算法

下一篇:PHP將時間格式化幾天前、幾分鐘前等