当前位置: 首页>>代码示例>>PHP>>正文


PHP cls_image::make_thumb方法代码示例

本文整理汇总了PHP中cls_image::make_thumb方法的典型用法代码示例。如果您正苦于以下问题:PHP cls_image::make_thumb方法的具体用法?PHP cls_image::make_thumb怎么用?PHP cls_image::make_thumb使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cls_image的用法示例。


在下文中一共展示了cls_image::make_thumb方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: strpos

 /* 复制一份相册图片 */
 $img = $original_img;
 // 相册图片
 $pos = strpos(basename($img), '.');
 $newname = dirname($img) . '/' . $image->random_filename() . substr(basename($img), $pos);
 if (!copy('../' . $img, '../' . $newname)) {
     sys_msg('fail to copy file: ' . realpath('../' . $img), 1, array(), false);
 }
 $img = $newname;
 $gallery_img = $img;
 $gallery_thumb = $img;
 // 如果系统支持GD,缩放商品图片,且给商品图片和相册图片加水印
 if ($image->gd_version() > 0 && $image->check_img_function($_FILES['goods_img']['type'])) {
     // 如果设置大小不为0,缩放图片
     if ($_CFG['image_width'] != 0 || $_CFG['image_height'] != 0) {
         $goods_img = $image->make_thumb('../' . $goods_img, $GLOBALS['_CFG']['image_width'], $GLOBALS['_CFG']['image_height']);
         if ($goods_img === false) {
             sys_msg($image->error_msg(), 1, array(), false);
         }
     }
     $newname = dirname($img) . '/' . $image->random_filename() . substr(basename($img), $pos);
     if (!copy('../' . $img, '../' . $newname)) {
         sys_msg('fail to copy file: ' . realpath('../' . $img), 1, array(), false);
     }
     $gallery_img = $newname;
     // 加水印
     if (intval($_CFG['watermark_place']) > 0 && !empty($GLOBALS['_CFG']['watermark'])) {
         if ($image->add_watermark('../' . $goods_img, '', $GLOBALS['_CFG']['watermark'], $GLOBALS['_CFG']['watermark_place'], $GLOBALS['_CFG']['watermark_alpha']) === false) {
             sys_msg($image->error_msg(), 1, array(), false);
         }
         if ($image->add_watermark('../' . $gallery_img, '', $GLOBALS['_CFG']['watermark'], $GLOBALS['_CFG']['watermark_place'], $GLOBALS['_CFG']['watermark_alpha']) === false) {
开发者ID:BGCX261,项目名称:zishashop-svn-to-git,代码行数:31,代码来源:index.php

示例2: action_shaidan_save

function action_shaidan_save()
{
    $user = $GLOBALS['user'];
    $_CFG = $GLOBALS['_CFG'];
    $_LANG = $GLOBALS['_LANG'];
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    $user_id = $_SESSION['user_id'];
    include_once dirname(__FILE__) . '/includes/cls_image.php';
    $image = new cls_image($_CFG['bgcolor']);
    $rec_id = intval($_POST['rec_id']);
    $goods_id = intval($_POST['goods_id']);
    $title = trim($_POST['title']);
    $message = $_POST['message'];
    $add_time = gmtime();
    $status = $_CFG['shaidan_check'];
    $hide_username = intval($_POST['hide_username']);
    $sql = "INSERT INTO " . $ecs->table('shaidan') . "(rec_id, goods_id, user_id, title, message, add_time, status, hide_username)" . "VALUES ('{$rec_id}', '{$goods_id}', '{$user_id}', '{$title}', '{$message}', '{$add_time}', '{$status}', '{$hide_username}')";
    $db->query($sql);
    $shaidan_id = $db->insert_id();
    $db->query("UPDATE " . $ecs->table('order_goods') . " SET shaidan_state = 1 WHERE rec_id = '{$rec_id}'");
    // 处理图片
    $img_srcs = $_POST['img_srcs'];
    $img_names = $_POST['img_names'];
    if (is_array($img_srcs)) {
        foreach ($img_srcs as $i => $src) {
            $thumb = $image->make_thumb($src, 100, 100);
            $sql = "INSERT INTO " . $ecs->table('shaidan_img') . "(shaidan_id, `desc`, image, thumb)" . "VALUES ('{$shaidan_id}', '" . $img_names[$i] . "', '{$src}', '{$thumb}')";
            $db->query($sql);
        }
    }
    // 需要审核
    if ($status == 0) {
        $msg = '您的信息提交成功,需要管理员审核后才能显示!';
    } else {
        $info = $db->GetRow("SELECT * FROM " . $ecs->table('shaidan') . " WHERE shaidan_id='{$shaidan_id}'");
        // 该商品第几位晒单者
        $res = $db->getAll("SELECT shaidan_id FROM " . $ecs->table("shaidan") . " WHERE goods_id = '{$info['goods_id']}' ORDER BY add_time ASC");
        foreach ($res as $key => $value) {
            if ($shaidan_id == $value['shaidan_id']) {
                $weizhi = $key + 1;
            }
        }
        // 图片数量
        $imgnum = count($img_srcs);
        // 是否赠送积分
        if ($info['is_points'] == 0 && $weizhi <= $_CFG['shaidan_pre_num'] && $imgnum >= $_CFG['shaidan_img_num']) {
            $pay_points = $_CFG['shaidan_pay_points'];
            $db->query("UPDATE " . $ecs->table('shaidan') . " SET pay_points = '{$pay_points}', is_points = 1 WHERE shaidan_id = '{$shaidan_id}'");
            $db->query("INSERT INTO " . $ecs->table('account_log') . "(user_id, rank_points, pay_points, change_time, change_desc, change_type) " . "VALUES ('{$info['user_id']}', 0, '" . $pay_points . "', " . gmtime() . ", '晒单获得积分', '99')");
            $log = $db->getRow("SELECT SUM(rank_points) AS rank_points, SUM(pay_points) AS pay_points FROM " . $ecs->table("account_log") . " WHERE user_id = '{$info['user_id']}'");
            $db->query("UPDATE " . $ecs->table('users') . " SET rank_points = '" . $log['rank_points'] . "', pay_points = '" . $log['pay_points'] . "' WHERE user_id = '{$info['user_id']}'");
        }
        $msg = '您的信息提交成功!';
    }
    echo "<script>alert('{$msg}');self.location='user.php?act=my_comment';</script>";
    exit;
}
开发者ID:seanguo166,项目名称:yinoos,代码行数:59,代码来源:user.php

示例3: alert

    $thumb_file_name = date("His") . rand(10000, 99999);
    $new_file_name = $thumb_file_name . '.' . $file_ext;
    //移动文件
    $file_path = $save_path . $new_file_name;
    if (move_uploaded_file($tmp_name, $file_path) === false) {
        alert("上传文件失败。");
    }
    @chmod($file_path, 0644);
    $file_url = $save_url . $new_file_name;
    $type = $_FILES['imgFile']['type'];
    $type1 = substr($type, 0, 5);
    //判断上传是否是图片
    if ($type1 == 'image') {
        require_once 'cls_image.php';
        $images = new cls_image();
        if ($filename = $images->make_thumb($file_path, 600, '', $save_path, $thumb_file_name)) {
            $file_url = $save_url . $filename;
        } else {
            alert($images->error_msg);
        }
    }
    header('Content-type: text/html; charset=UTF-8');
    $json = new Services_JSON();
    echo $json->encode(array('error' => 0, 'url' => $file_url));
    exit;
}
function alert($msg)
{
    header('Content-type: text/html; charset=UTF-8');
    $json = new Services_JSON();
    echo $json->encode(array('error' => 1, 'message' => $msg));
开发者ID:skyshow,项目名称:government,代码行数:31,代码来源:upload_json.php

示例4: API_AddGoods

/**
 * 添加商品
 *
 * @param array $post
 */
function API_AddGoods($post)
{
    //debug_text();
    global $_CFG;
    /* 加载后台操作类与函数 */
    require_once ROOT_PATH . ADMIN_PATH . '/includes/lib_main.php';
    require_once ROOT_PATH . ADMIN_PATH . '/includes/lib_goods.php';
    require_once ROOT_PATH . 'includes/cls_image.php';
    /* 检查权限 */
    admin_privilege('goods_manage');
    $image = new cls_image($GLOBALS['_CFG']['bgcolor']);
    $code = empty($_POST['extension_code']) ? '' : trim($_POST['extension_code']);
    /* 插入还是更新的标识 */
    $is_insert = $_POST['act'] == 'insert';
    /* 如果是更新,先检查该商品是否存在,不存在,则退出。 */
    if (!$is_insert) {
        $sql = "SELECT COUNT(*) FROM " . $GLOBALS['ecs']->table('goods') . " WHERE goods_id = '{$_POST['goods_id']}' AND is_delete = 0";
        if ($GLOBALS['db']->getOne($sql) <= 0) {
            client_show_message(240);
            //货号重复
        }
    }
    /* 检查货号是否重复 */
    if ($_POST['goods_sn']) {
        $sql = "SELECT COUNT(*) FROM " . $GLOBALS['ecs']->table('goods') . " WHERE goods_sn = '{$_POST['goods_sn']}' AND is_delete = 0 AND goods_id <> '{$_POST['goods_id']}'";
        if ($GLOBALS['db']->getOne($sql) > 0) {
            client_show_message(200);
            //货号重复
        }
    }
    /* 处理商品图片 */
    $goods_img = '';
    // 初始化商品图片
    $goods_thumb = '';
    // 初始化商品缩略图
    $original_img = '';
    // 初始化原始图片
    $old_original_img = '';
    // 初始化原始图片旧图
    $allow_file_type = array('jpg', 'jpeg', 'png', 'gif');
    if (!empty($_POST['goods_img']['Data'])) {
        if (!in_array($_POST['goods_img']['Type'], $allow_file_type)) {
            client_show_message(201);
        }
        if (client_check_image_size($_POST['goods_img']['Data']) === false) {
            client_show_message(202);
        }
        if ($_POST['goods_id'] > 0) {
            /* 删除原来的图片文件 */
            $sql = "SELECT goods_thumb, goods_img, original_img " . " FROM " . $GLOBALS['ecs']->table('goods') . " WHERE goods_id = '{$_POST['goods_id']}'";
            $row = $GLOBALS['db']->getRow($sql);
            if ($row['goods_thumb'] != '' && is_file(ROOT_PATH . '/' . $row['goods_thumb'])) {
                @unlink(ROOT_PATH . '/' . $row['goods_thumb']);
            }
            if ($row['goods_img'] != '' && is_file(ROOT_PATH . '/' . $row['goods_img'])) {
                @unlink(ROOT_PATH . '/' . $row['goods_img']);
            }
            if ($row['original_img'] != '' && is_file(ROOT_PATH . '/' . $row['original_img'])) {
                /* 先不处理,以防止程序中途出错停止 */
                //$old_original_img = $row['original_img']; //记录旧图路径
            }
        }
        $original_img = upload_image($_POST['goods_img']);
        // 原始图片
        if ($original_img === false) {
            client_show_message(210);
            // 写入商品图片出错
        }
        $goods_img = $original_img;
        // 商品图片
        /* 复制一份相册图片 */
        $img = $original_img;
        // 相册图片
        $pos = strpos(basename($img), '.');
        $newname = dirname($img) . '/' . random_filename() . substr(basename($img), $pos);
        if (!copy(ROOT_PATH . '/' . $img, ROOT_PATH . '/' . $newname)) {
            client_show_message(211);
            // 复制相册图片时出错
        }
        $img = $newname;
        $gallery_img = $img;
        $gallery_thumb = $img;
        /* 图片属性 */
        $img_property = $image->gd_version() > 0 ? getimagesize(ROOT_PATH . '/' . $goods_img) : array();
        // 如果系统支持GD,缩放商品图片,且给商品图片和相册图片加水印
        if ($image->gd_version() > 0 && $image->check_img_function($img_property[2])) {
            // 如果设置大小不为0,缩放图片
            if ($GLOBALS['_CFG']['image_width'] != 0 || $GLOBALS['_CFG']['image_height'] != 0) {
                $goods_img = $image->make_thumb(ROOT_PATH . '/' . $goods_img, $GLOBALS['_CFG']['image_width'], $GLOBALS['_CFG']['image_height']);
                if ($goods_img === false) {
                    client_show_message(212);
                }
            }
            // 加水印
            if (intval($GLOBALS['_CFG']['watermark_place']) > 0 && !empty($GLOBALS['_CFG']['watermark'])) {
//.........这里部分代码省略.........
开发者ID:Ryan007,项目名称:mybb,代码行数:101,代码来源:lib_api.php

示例5: getimagesize

$picSize = $_FILES['imgFile']['size'];
//图片尺寸
list($picWidth, $picHeight) = getimagesize($_FILES['imgFile']['tmp_name']);
//图片高宽
/* 通知详情的图片 */
if ($act == 'notice' || $act == 'intro' || $act == 'info' || $act == 'lifenav' || $act == 'redpacket') {
    $maxSize = 1 * 1024 * 1024;
    $dir_name .= $act;
    if ($picSize > $maxSize) {
        $msg['error'] = 1;
        $msg['message'] = '上传图片不能大于1M';
    } else {
        $cls_image = new cls_image('#ffffff', $dir_name);
        $upload = isset($_FILES['imgFile']) ? $_FILES['imgFile'] : '';
        $msg = $cls_image->upload_image($upload, $dir = '', $img_name = '');
        if ($msg['error'] == 0) {
            $msg['url'] = $msg['msg'];
            if ($picWidth > 640) {
                $msg['msg'] = substr($msg['msg'], 1);
                $msg['url'] = $cls_image->make_thumb($msg['msg'], $width = 640, $height = 0, $path = '', $pic = '');
                @unlink($msg['msg']);
                // 删除原图,只保留缩略图
            }
        } else {
            $msg['message'] = $msg['msg'];
        }
    }
}
$msg = $Json->encode($msg);
echo $msg;
exit;
开发者ID:yihuanbingo,项目名称:bxcjy,代码行数:31,代码来源:uploadimg.php

示例6: substr

 //代表图片上传
 if ($_FILES['logo']['size']) {
     $save['supplier_id'] = 0;
     //自营运营商
     include_once ROOT_PATH . 'includes/cls_image.php';
     $image = new cls_image($_CFG['bgcolor']);
     $logo_path .= $save['supplier_id'];
     $logo_name = "original" . $save['supplier_id'] . '_' . $favourable['act_id'] . substr($_FILES['logo']['name'], -4);
     $picinfo = $image->upload_image($_FILES['logo'], $logo_path, $logo_name);
     $parray = pathinfo($picinfo);
     if ($picinfo) {
         $create_pic_info = array('580x260' => array('width' => 580, 'height' => 260));
         foreach ($create_pic_info as $key => $val) {
             $path = ROOT_PATH . $parray['dirname'] . '/';
             $image->create_pic_name = "original" . $save['supplier_id'] . '_' . $favourable['act_id'] . "_" . $key;
             $pinfo = $image->make_thumb(ROOT_PATH . $picinfo, $val['width'], $val['height'], $path);
         }
         $save['logo'] = '/' . $pinfo;
     }
     $pic_sql = "update " . $ecs->table('favourable_activity') . " set logo='" . $save['logo'] . "' where act_id=" . $favourable['act_id'];
     $db->query($pic_sql);
 }
 /* 记日志 */
 if ($is_add) {
     admin_log($favourable['act_name'], 'add', 'favourable');
 } else {
     admin_log($favourable['act_name'], 'edit', 'favourable');
 }
 /* 清除缓存 */
 clear_cache_files();
 /* 提示信息 */
开发者ID:firsteam,项目名称:falcons,代码行数:31,代码来源:favourable.php

示例7: end

         }
     }
 }
 //会员头像 by neo
 if (!empty($_FILES['avatar']['name'])) {
     /* 更新会员头像之前先删除旧的头像 */
     $sql = "SELECT avatar " . " FROM " . $GLOBALS['ecs']->table('users') . " WHERE user_id = '{$user_id}'";
     $row = $GLOBALS['db']->getRow($sql);
     if ($row['avatar'] != '') {
         @unlink($row['avatar']);
     }
     $img_name = $user_id . '.' . end(explode('.', $_FILES['avatar']['name']));
     $target = ROOT_PATH . DATA_DIR . '/avatar/';
     $original_img = $image->upload_image($_FILES['avatar'], 'avatar', $img_name);
     // 原始图片
     $avatar = $image->make_thumb($original_img, 55, 55, $target);
     if ($avatar === false) {
         show_message("图片保存出错!");
     }
 }
 $profile = array('user_id' => $user_id, 'email' => isset($_POST['email']) ? trim($_POST['email']) : '', 'sex' => isset($_POST['sex']) ? intval($_POST['sex']) : 0, 'birthday' => $birthday, 'avatar' => $avatar, 'other' => isset($other) ? $other : array());
 if (edit_profile($profile)) {
     show_message($_LANG['edit_profile_success'], $_LANG['profile_lnk'], 'user.php?act=profile', 'info');
 } else {
     if ($user->error == ERR_EMAIL_EXISTS) {
         $msg = sprintf($_LANG['email_exist'], $profile['email']);
     } else {
         $msg = $_LANG['edit_profile_failed'];
     }
     show_message($msg, '', '', 'info');
 }
开发者ID:naliduo,项目名称:ecshop,代码行数:31,代码来源:user.php

示例8: action_shaidan_save

function action_shaidan_save()
{
    $user = $GLOBALS['user'];
    $_CFG = $GLOBALS['_CFG'];
    $_LANG = $GLOBALS['_LANG'];
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    $user_id = $_SESSION['user_id'];
    include_once dirname(__FILE__) . '/includes/cls_image.php';
    $image = new cls_image($_CFG['bgcolor']);
    $rec_id = intval($_POST['rec_id']);
    $goods_id = intval($_POST['goods_id']);
    $title = trim($_POST['title']);
    $message = $_POST['message'];
    $add_time = gmtime();
    $status = $_CFG['shaidan_check'];
    $hide_username = intval($_POST['hide_username']);
    $sql = "INSERT INTO " . $ecs->table('shaidan') . "(rec_id, goods_id, user_id, title, message, add_time, status, hide_username)" . "VALUES ('{$rec_id}', '{$goods_id}', '{$user_id}', '{$title}', '{$message}', '{$add_time}', '{$status}', '{$hide_username}')";
    $db->query($sql);
    $shaidan_id = $db->insert_id();
    $db->query("UPDATE " . $ecs->table('order_goods') . " SET shaidan_state = 1 WHERE rec_id = '{$rec_id}'");
    // 处理图片
    $img_srcs[0] = $_FILES['img_srcs0'];
    $img_srcs[1] = $_FILES['img_srcs1'];
    $img_srcs[2] = $_FILES['img_srcs2'];
    $img_srcs[3] = $_FILES['img_srcs3'];
    include_once ROOT_PATH . 'includes/cls_image.php';
    $path_a = "images/image/" . date('Ym') . "/";
    $path = "./../" . $path_a;
    if (!file_exists($path)) {
        mkdir($path);
    }
    foreach ($img_srcs as $k => $v) {
        if (!empty($v["name"])) {
            $arr = explode(".", $v["name"]);
            $hz = $arr[count($arr) - 1];
            $v["name"] = time() . '_' . $k . '.' . $hz;
            if (file_exists($path . $v["name"])) {
                $msg = '该文件已经存在!';
            } else {
                if (move_uploaded_file($v["tmp_name"], $path . $v["name"])) {
                    ini_set("memory_limit", -1);
                    $thumb = $image->make_thumb($path . $v["name"], 100, 100);
                    $path_img = $path_a . $v["name"];
                    $sql = "INSERT INTO " . $ecs->table('shaidan_img') . "(shaidan_id, `desc`, image, thumb)" . "VALUES ('{$shaidan_id}', '" . $v["name"] . "', '{$path_img}', '{$thumb}')";
                    $db->query($sql);
                }
                //echo "存储路径: " . $path . $v["name"];
            }
        }
    }
    // 需要审核
    if ($status == 0) {
        $msg = '您的信息提交成功,需要管理员审核后才能显示!';
    } else {
        $info = $db->GetRow("SELECT * FROM " . $ecs->table('shaidan') . " WHERE shaidan_id='{$shaidan_id}'");
        // 该商品第几位晒单者
        $res = $db->getAll("SELECT shaidan_id FROM " . $ecs->table("shaidan") . " WHERE goods_id = '{$info['goods_id']}' ORDER BY add_time ASC");
        foreach ($res as $key => $value) {
            if ($shaidan_id == $value['shaidan_id']) {
                $weizhi = $key + 1;
            }
        }
        // 图片数量
        $imgnum = count($img_srcs);
        // 是否赠送积分
        if ($info['is_points'] == 0 && $weizhi <= $_CFG['shaidan_pre_num'] && $imgnum >= $_CFG['shaidan_img_num']) {
            $pay_points = $_CFG['shaidan_pay_points'];
            $db->query("UPDATE " . $ecs->table('shaidan') . " SET pay_points = '{$pay_points}', is_points = 1 WHERE shaidan_id = '{$shaidan_id}'");
            $db->query("INSERT INTO " . $ecs->table('account_log') . "(user_id, rank_points, pay_points, change_time, change_desc, change_type) " . "VALUES ('{$info['user_id']}', 0, '" . $pay_points . "', " . gmtime() . ", '晒单获得积分', '99')");
            $log = $db->getRow("SELECT SUM(rank_points) AS rank_points, SUM(pay_points) AS pay_points FROM " . $ecs->table("account_log") . " WHERE user_id = '{$info['user_id']}'");
            $db->query("UPDATE " . $ecs->table('users') . " SET rank_points = '" . $log['rank_points'] . "', pay_points = '" . $log['pay_points'] . "' WHERE user_id = '{$info['user_id']}'");
        }
        $msg = '您的信息提交成功!';
    }
    echo "<script>alert('{$msg}');self.location='user.php?act=my_comment';</script>";
    exit;
}
开发者ID:moonlight-wang,项目名称:feilun,代码行数:79,代码来源:user9-9.php

示例9: foreach

 $i = 0;
 foreach ($single_img_url as $k => $v) {
     $front_cover = 0;
     if ($k == $cover) {
         $front_cover = 1;
     }
     $rand_name = gmtime() . sprintf("%03d", mt_rand(1, 999));
     $img_ext = substr($v, strrpos($v, '.'));
     $img_name = $goods_id . '_S_' . $rand_name;
     $img_path = $dir . '/' . $sub_dir . '/single_img/' . $img_name . $img_ext;
     if (!file_exists(ROOT_PATH . $dir . '/' . $sub_dir . '/single_img/')) {
         createFolder(ROOT_PATH . $dir . '/' . $sub_dir . '/single_img/');
         mkdir($path, 0777);
     }
     if (move_image_file_single(ROOT_PATH . $v, ROOT_PATH . $dir . '/' . $sub_dir . '/single_img/' . $img_name . $img_ext)) {
         $thumb_url = $image->make_thumb($img_path, $GLOBALS['_CFG']['thumb_width'], $GLOBALS['_CFG']['thumb_height']);
         $thumb_url = is_string($thumb_url) ? $thumb_url : '';
         $sql = "INSERT INTO " . $ecs->table('goods_gallery') . " (goods_id, img_url, img_desc, thumb_url, img_original, single_id, dis_id, front_cover) " . "VALUES ('0', '{$img_path}', '{$cont_desc[$i]}', '{$thumb_url}', '', '{$single_id}','0', '{$front_cover}')";
         $db->query($sql);
         $i++;
         // 				unlink(ROOT_PATH.$v);
     } else {
         show_message('-_-提交失败,请检查网络', $_LANG['back_page_up'], "user.php?act=single_sun&order_id={$order_id}&goods_id={$goods_id}", 'error');
     }
 }
 $sql = "UPDATE " . $ecs->table('order_goods') . " SET is_single = '1' WHERE order_id='{$order_id}' AND goods_id='{$goods_id}'";
 if ($db->query($sql)) {
     show_message($_LANG['single_success'], $_LANG['back_page_list'], 'user.php?act=single_list');
 } else {
     show_message($_LANG['single_error'], $_LANG['back_page_up'], "user.php?act=single_sun&order_id={$order_id}&goods_id={$goods_id}", 'error');
 }
开发者ID:tang7h,项目名称:jzmall,代码行数:31,代码来源:user.php

示例10: elseif

             } elseif ($code == 'wap_logo') {
                 $ext = array_pop(explode('.', $file['name']));
                 $file_name = $file_var_list[$code]['store_dir'] . 'wap_logo.' . $ext;
                 if (file_exists($file_var_list[$code]['value'])) {
                     @unlink($file_var_list[$code]['value']);
                 }
             } else {
                 $file_name = $file_var_list[$code]['store_dir'] . $file['name'];
             }
             /* 判断是否上传成功 */
             if (move_upload_file($file['tmp_name'], $file_name)) {
                 if ($code == 'shop_logo') {
                     include_once ROOT_PATH . 'includes/cls_image.php';
                     $image = new cls_image($_CFG['bgcolor']);
                     $image->create_pic_name = 'logo_supplier' . $_SESSION['supplier_id'];
                     $file_name = '/' . $image->make_thumb($file_name, 360, 180, $to_path);
                 }
                 $sql = "UPDATE " . $ecs->table('supplier_shop_config') . " SET value = '{$file_name}' WHERE code = '{$code}' AND supplier_id=" . $_SESSION['supplier_id'];
                 $db->query($sql);
             } else {
                 sys_msg(sprintf($_LANG['msg_upload_failed'], $file['name'], $file_var_list[$code]['store_dir']));
             }
         }
     }
 }
 /* 处理发票类型及税率 */
 /*
 if (!empty($_POST['invoice_rate']))
 {
     foreach ($_POST['invoice_rate'] as $key => $rate)
     {
开发者ID:seanguo166,项目名称:yinoos,代码行数:31,代码来源:shop_config.php

示例11: get_img

/**
* 处理url图片
* @$img_url 图片地址
* @$mark  	是否处理缩略图 1不处理
**/
function get_img($img_url = '', $mark = '0')
{
    $cls_imageobj = new cls_image();
    if (strstr($img_url, 'http://')) {
        $data = file_get_contents($img_url);
        $dir = date('Ym');
        $filename = cls_image::random_filename();
        $imgDir = $cls_imageobj->images_dir . '/' . $dir . '/source_img/' . $filename . '.jpg';
        $dir = ROOT_PATH . $imgDir;
        $fp = @fopen($dir, "w");
        @fwrite($fp, $data);
        fclose($fp);
    } else {
        $imgDir = $img_url;
    }
    if ($mark == '0') {
        //处理缩略图
        $goods_thumb = '';
        $goods_img = '';
        $goods_thumb = $cls_imageobj->make_thumb('http://o2o.txd168.com/' . $imgDir, "170", '170');
        $goods_img = $cls_imageobj->make_thumb('http://o2o.txd168.com/' . $imgDir, "300", '300');
        return array('original_img' => $imgDir, 'goods_thumb' => $goods_thumb, 'goods_img' => $goods_img);
    } elseif ($mark == '1') {
        return $imgDir;
    }
}
开发者ID:dlpc,项目名称:ecshop,代码行数:31,代码来源:souwu.php


注:本文中的cls_image::make_thumb方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。