gpt4 book ai didi

php - 从 Dropbox Directory 拉取和显示网站图库中的图像

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:05:53 24 4
gpt4 key购买 nike

我正在与一位摄影师客户合作创建一个简单的网站,我希望建立一个从 Dropbox 文件夹中提取的照片库,所以每当她想更新库中的图像时,她只需将照片从 Dropbox 文件夹中换出即可。很简单,对吧?

有没有办法使用 jQuery 或 PHP 从 Dropbox 目录中提取图像并将它们显示到网页上?我已经成功地从 Dropbox 上的文本文件中提取文本,但我不知道对于目录中的图像是否也可以这样做。

我进行了一些 Google 搜索,但不断得到的结果教我如何将图片上传和下载到 Dropbox 目录——这不是我想要的。

最佳答案

其实很简单。这是来自 http://davidwalsh.name/generate-photo-gallery 的片段点击此链接,您将找到解决问题的简单方法(包括演示)。

/** settings **/
$images_dir = '<path-to-your-dropbox>';
$thumbs_dir = '<path-to-your-generated thumbnails>';
$thumbs_width = 200;
$images_per_row = 3;

/** generate photo gallery **/
$image_files = get_files($images_dir);
if(count($image_files)) {
$index = 0;
foreach($image_files as $index=>$file) {
$index++;
$thumbnail_image = $thumbs_dir.$file;
if(!file_exists($thumbnail_image)) {
$extension = get_file_extension($thumbnail_image);
if($extension) {
make_thumb($images_dir.$file,$thumbnail_image,$thumbs_width);
}
}
echo '<a href="',$images_dir.$file,'" class="photo-link smoothbox" rel="gallery"><img src="',$thumbnail_image,'" /></a>';
if($index % $images_per_row == 0) { echo '<div class="clear"></div>'; }
}
echo '<div class="clear"></div>';
}
else {
echo '<p>There are no images in this gallery.</p>';
}

关于php - 从 Dropbox Directory 拉取和显示网站图库中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15282629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com