|
@@ -10,9 +10,10 @@ class CommonHelper
|
|
|
|
|
|
/*
|
|
|
* $images 格式:['image.jpg','image2.jpg']
|
|
|
+ * $ossSource 1:本地 2:相册
|
|
|
* 返回显示的HTML显示图片
|
|
|
*/
|
|
|
- public static function displayImage($images,$boxSize=60,$imgSize=1024)
|
|
|
+ public static function displayImage($images,$boxSize=60,$imgSize=1024,$ossSource=1)
|
|
|
{
|
|
|
if (empty($images) || empty($images[0])) {
|
|
|
$html = "";
|
|
@@ -20,8 +21,12 @@ class CommonHelper
|
|
|
|
|
|
|
|
|
// 默认显示 100x100 的图片
|
|
|
- $thumbnailImages = array_map(function ($imageUrl) use ($boxSize) {
|
|
|
- $imageUrl= CommonHelper::ossUrl($imageUrl);
|
|
|
+ $thumbnailImages = array_map(function ($imageUrl) use ($boxSize,$ossSource) {
|
|
|
+ if ($ossSource == 1) {
|
|
|
+ $imageUrl= CommonHelper::ossUrl($imageUrl);
|
|
|
+ } else {
|
|
|
+ $imageUrl= CommonHelper::albumUrl($imageUrl);
|
|
|
+ }
|
|
|
$extension = pathinfo($imageUrl, PATHINFO_EXTENSION);
|
|
|
if ($extension == 'svg') {
|
|
|
return $imageUrl;
|
|
@@ -32,8 +37,12 @@ class CommonHelper
|
|
|
}, $images);
|
|
|
|
|
|
// 生成点击查看大图的链接
|
|
|
- $largeImages = array_map(function ($imageUrl) use ($imgSize) {
|
|
|
- $imageUrl= CommonHelper::ossUrl($imageUrl);
|
|
|
+ $largeImages = array_map(function ($imageUrl) use ($imgSize,$ossSource) {
|
|
|
+ if ($ossSource == 1) {
|
|
|
+ $imageUrl= CommonHelper::ossUrl($imageUrl);
|
|
|
+ } else {
|
|
|
+ $imageUrl= CommonHelper::albumUrl($imageUrl);
|
|
|
+ }
|
|
|
$extension = pathinfo($imageUrl, PATHINFO_EXTENSION);
|
|
|
if ($extension == 'svg') {
|
|
|
return $imageUrl;
|
|
@@ -69,6 +78,18 @@ class CommonHelper
|
|
|
return "http://".env('OSS_BUCKET').'.'.env('OSS_ENDPOINT').'/'.$imageUrl;
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * 图库图片URL
|
|
|
+ */
|
|
|
+ public static function albumUrl($imageUrl)
|
|
|
+ {
|
|
|
+ if (strpos($imageUrl, 'http:') === 0 || strpos($imageUrl, 'https:') === 0) {
|
|
|
+ return $imageUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ return env('ALBUM_OSS_URL').'/'.$imageUrl;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
|
|
|
/*
|