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


PHP oledrion_utils::resizePicture方法代码示例

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


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

示例1: basename

     $item = $h_oledrion_manufacturer->create(true);
 }
 $opRedirect = 'manufacturers';
 $item->setVars($_POST);
 for ($i = 1; $i <= 5; $i++) {
     if (isset($_POST['delpicture' . $i]) && intval($_POST['delpicture' . $i]) == 1) {
         $item->deletePicture($i);
     }
 }
 // Upload des fichiers
 for ($i = 1; $i <= 5; $i++) {
     $res1 = oledrion_utils::uploadFile($i - 1, OLEDRION_PICTURES_PATH);
     if ($res1 === true) {
         if (oledrion_utils::getModuleOption('resize_others')) {
             // Eventuellement on redimensionne l'image
             oledrion_utils::resizePicture(OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $destname, OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $destname, oledrion_utils::getModuleOption('images_width'), oledrion_utils::getModuleOption('images_height'), true);
         }
         $item->setVar('manu_photo' . $i, basename($destname));
     } else {
         if ($res1 !== false) {
             echo $res1;
         }
     }
 }
 $res = $h_oledrion_manufacturer->insert($item);
 if ($res) {
     oledrion_utils::updateCache();
     oledrion_utils::redirect(_AM_OLEDRION_SAVE_OK, $baseurl . '?op=' . $opRedirect, 2);
 } else {
     oledrion_utils::redirect(_AM_OLEDRION_SAVE_PB, $baseurl . '?op=' . $opRedirect, 5);
 }
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:31,代码来源:manufacturers.php

示例2: basename

     // L'utilisateur se charge de créer la vignette lui-même
     $destname = '';
     $res2 = oledrion_utils::uploadFile(1, OLEDRION_PICTURES_PATH);
     if ($res2 === true) {
         $item->setVar('product_thumb_url', basename($destname));
     } else {
         if ($res2 !== false) {
             echo $res2;
         }
     }
 } else {
     // Il faut créer la vignette pour l'utilisateur
     $indiceAttached = 1;
     if (xoops_trim($mainPicture) != '') {
         $thumbName = OLEDRION_THUMBS_PREFIX . $mainPicture;
         oledrion_utils::resizePicture(OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $mainPicture, OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $thumbName, oledrion_utils::getModuleOption('thumbs_width'), oledrion_utils::getModuleOption('thumbs_height'), true);
         $item->setVar('product_thumb_url', $thumbName);
     }
 }
 // Téléchargement du fichier attaché
 $destname = '';
 $res3 = oledrion_utils::uploadFile($indiceAttached, OLEDRION_ATTACHED_FILES_PATH);
 if ($res3 === true) {
     $item->setVar('product_attachment', basename($destname));
 } else {
     if ($res3 !== false) {
         echo $res3;
     }
 }
 $res = $h_oledrion_products->insert($item);
 if ($res) {
开发者ID:osw17,项目名称:oledrion,代码行数:31,代码来源:products.php


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