在用户可以旋转上传图片的页面上,有一个旋转图片的按钮。这是使用干预图像完成的,但使用PHP实现了相同的结果(和问题)。
问题是图像旋转有效,但旋转的图像不会显示在浏览器中。这可能是由于缓存,因为当手动清空缓存时,旋转的图片确实显示在浏览器中。
public function rotate($picture_id) {
// get picture location
$path = Picture::where('id',$picture_id)->first()->location;
// Rotate the picture
$path_orig = storage_path('app/public/'.$path);
$img_orig = Image::make($path_orig)
->rotate(-90)
->save($path_orig);
// Rotate thumbnails etc
...
return Redirect::back();
}
解 使用随机字符串更新文件名。
public function rotate($picture_id) {
// get picture location
$path = Picture::where('id',$picture_id)->first()->location;
// Path to picture
$path_orig = storage_path('app/public/'.$path);
$path_s = public_path($path);
// New path
do {
$newKey = str_random(40);
$ext = File::extension($path_orig);
$dir = dirname($path_orig);
$path_L_new = $dir.'/'.$newKey.'.'.$ext;
$path_S_new = public_path('folder/'.$newKey.'.'.$ext);
}
while ( count(Picture::where('location',$path_L_new)->get()) > 0 );
// Rotate images
$img_L_new = Image::make($path_orig)
->rotate(-90)
->save($path_L_new);
$img_S_new = Image::make($path_s)
->rotate(-90)
->save($path_S_new);
// Delete old files
Storage::delete($path);
File::delete(public_path($path));
// Update location
$pic = Picture::where('id',$picture_id)->first()->update(array('location' => 'folder/'.$newKey.'.'.$ext));
// Show new picture
return Redirect::back();
}
答案 0 :(得分:0)
您必须在图像src:
附加一个随机或唯一的字符串<img src="/path/to/file.jpg{{ time() }}">
但请注意,当图像未更新时,不要将新的随机字符串附加到图像src的末尾。如果这样做,图像将不会被缓存。
正确的方法: 更新图像后,最好为此图像存储随机字符串并将其存储在数据库中。在显示图像时,将对等随机字符串附加到其中。不要在每次通话时生成新的随机字符串。