Yii框架实现图片上传的方法详解
程序员文章站
2024-03-09 10:47:41
本文实例讲述了yii框架实现图片上传的方法。分享给大家供大家参考,具体如下:
今天在网上看了下有关图片上传的教程,历经挫折才调试好,现在把相关代码及其说明贴出来,以供初次...
本文实例讲述了yii框架实现图片上传的方法。分享给大家供大家参考,具体如下:
今天在网上看了下有关图片上传的教程,历经挫折才调试好,现在把相关代码及其说明贴出来,以供初次使用的朋友们参考。
model:
<?php class upload extends cactiverecord { public $image; public static function model($classname = __class__) { return $classname; } public function tablename() { return '{{resource}}'; } public function rules() { return array( array('image', 'file', 'types'=>'jpg, gif, png') ); } }
注:resource为数据表,表前缀可在main.php内设置,相信朋友们在看到文件上传时应该熟悉了main.php位置在哪及运作机制。
controller:
<?php class uploadcontroller extends controller { public function actionindex() { $model=new upload; if(isset($_post['upload'])) { $model->image=cuploadedfile::getinstance($model,'image'); $ext = $model->image->getextensionname(); $filename = uniqid() . '.' . $ext; $model->image->saveas('assets/' . $filename); } $this->renderpartial('index', array('model'=>$model)); } }
注:saveas里面是存放图片上传后的地址,追踪下代码可以发现,该参数是move_uploaded_file函数的第二个参数,一定得是文件名。
view:
<meta charset="utf-8"> <?php echo chtml::form(site_url . 'admin/upload/index','post',array('enctype'=>'multipart/form-data')); ?> <?php echo chtml::activefilefield($model, 'image'); ?> <?php echo chtml::submitbutton('提交');?> <?php echo chtml::endform(); ?>
注:上面的site_url为项目定义的常量,也就是项目的网址
相信经过上述步骤,朋友们应该可以上传成功图片,而且在项目下的assets目录下找到上传的图片。因为发现yii没有缩略图的方法,于是把thinkphp缩略图的方法整合了进来,把下面代码保存为image.php放在项目下的protected/extensions目录下
<?php class image extends ccontroller { /** +---------------------------------------------------------- * 取得图像信息 * +---------------------------------------------------------- * @static * @access public +---------------------------------------------------------- * @param string $image 图像文件名 +---------------------------------------------------------- * @return mixed +---------------------------------------------------------- */ static function getimageinfo($img) { $imageinfo = getimagesize($img); if ($imageinfo !== false) { $imagetype = strtolower(substr(image_type_to_extension($imageinfo[2]), 1)); $imagesize = filesize($img); $info = array( "width" => $imageinfo[0], "height" => $imageinfo[1], "type" => $imagetype, "size" => $imagesize, "mime" => $imageinfo['mime'] ); return $info; } else { return false; } } /** +---------------------------------------------------------- * 生成缩略图 +---------------------------------------------------------- * @static * @access public +---------------------------------------------------------- * @param string $image 原图 * @param string $type 图像格式 * @param string $thumbname 缩略图文件名 * @param string $maxwidth 宽度 * @param string $maxheight 高度 * @param string $position 缩略图保存目录 * @param boolean $interlace 启用隔行扫描 +---------------------------------------------------------- * @return void +---------------------------------------------------------- */ static function thumb($image, $thumbname, $type='', $maxwidth=200, $maxheight=50, $interlace=true) { // 获取原图信息 $info = image::getimageinfo($image); if ($info !== false) { $srcwidth = $info['width']; $srcheight = $info['height']; $type = empty($type) ? $info['type'] : $type; $type = strtolower($type); $interlace = $interlace ? 1 : 0; unset($info); $scale = min($maxwidth / $srcwidth, $maxheight / $srcheight); // 计算缩放比例 if ($scale >= 1) { // 超过原图大小不再缩略 $width = $srcwidth; $height = $srcheight; } else { // 缩略图尺寸 $width = (int) ($srcwidth * $scale); $height = (int) ($srcheight * $scale); } // 载入原图 $createfun = 'imagecreatefrom' . ($type == 'jpg' ? 'jpeg' : $type); if(!function_exists($createfun)) { return false; } $srcimg = $createfun($image); //创建缩略图 if ($type != 'gif' && function_exists('imagecreatetruecolor')) $thumbimg = imagecreatetruecolor($width, $height); else $thumbimg = imagecreate($width, $height); //png和gif的透明处理 by luofei614 if('png'==$type){ imagealphablending($thumbimg, false);//取消默认的混色模式(为解决阴影为绿色的问题) imagesavealpha($thumbimg,true);//设定保存完整的 alpha 通道信息(为解决阴影为绿色的问题) }elseif('gif'==$type){ $trnprt_indx = imagecolortransparent($srcimg); if ($trnprt_indx >= 0) { //its transparent $trnprt_color = imagecolorsforindex($srcimg , $trnprt_indx); $trnprt_indx = imagecolorallocate($thumbimg, $trnprt_color['red'], $trnprt_color['green'], $trnprt_color['blue']); imagefill($thumbimg, 0, 0, $trnprt_indx); imagecolortransparent($thumbimg, $trnprt_indx); } } // 复制图片 if (function_exists("imagecopyresampled")) imagecopyresampled($thumbimg, $srcimg, 0, 0, 0, 0, $width, $height, $srcwidth, $srcheight); else imagecopyresized($thumbimg, $srcimg, 0, 0, 0, 0, $width, $height, $srcwidth, $srcheight); // 对jpeg图形设置隔行扫描 if ('jpg' == $type || 'jpeg' == $type) imageinterlace($thumbimg, $interlace); // 生成图片 $imagefun = 'image' . ($type == 'jpg' ? 'jpeg' : $type); $imagefun($thumbimg, $thumbname); imagedestroy($thumbimg); imagedestroy($srcimg); return $thumbname; } return false; } } ?>
再在项目下的protected/config/main.php中import字段加上
// autoloading model and component classes 'import'=>array( 'application.models.*', 'application.components.*', 'application.extensions.*', #加上此行,意思为自动载入 ),
再上面的controller加上
public function actionindex() { $model=new upload; if(isset($_post['upload'])) { $model->image=cuploadedfile::getinstance($model,'image'); $ext = $model->image->getextensionname(); $filename = uniqid() . '.' . $ext; $model->image->saveas('assets/' . $filename); // 生成缩略图 image::thumb('assets/' . $filename, 'assets/' . uniqid() . '.' . $ext); } $this->renderpartial('index', array('model'=>$model)); }
这次就完整了。
更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于yii框架的php程序设计有所帮助。