🤖 由 ChatGPT 生成的文章摘要
此内容根据文章生成,并经过人工审核,仅用于文章内容的解释与总结

大家可能已经注意到了,我的博客主题为Sakurairo主题,这个主题有个显著的特点就是主页为随机展示的图片,后台需要填写随机图片api的地址,在经历了几个随机图片api网站关停的惨痛教训后,我萌生了自建一个类似网站的想法,说干就干,在网上通过查找发现主要实现方法有两种:

1.本地存储,本地调用;2.外部储存,调用链接

权衡之下,觉得第二种比较好处理,故采用调用链接的方法,下面我将详细介绍搭建教程。

一、新建api.php文件

<?php
// 获取请求中的 category 参数
$category = isset($_GET['category']) ? $_GET['category'] : null;

// 定义文件路径
$imgtxt_path = 'imgtxt/';
$default_pc_file = $imgtxt_path . 'pc-random.txt';
$default_mob_file = $imgtxt_path . 'mob-random.txt';
$default_file = $imgtxt_path . 'rimg.txt';

// 判断设备类型函数
function isMobile() {
    return preg_match('/(android|iphone|ipad|mobile)/i', $_SERVER['HTTP_USER_AGENT']);
}

// 根据分类获取文件路径
function getFilePath($category) {
    global $imgtxt_path;
    if ($category) {
        if (isMobile()) {
            $file = $imgtxt_path . 'mob-' . $category . '.txt';
        } else {
            $file = $imgtxt_path . 'pc-' . $category . '.txt';
        }
        if (file_exists($file)) {
            return $file;
        }
    }
    return null;
}

// 从文件中随机选择一行
function getRandomLine($filePath) {
    $lines = file($filePath, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
    return $lines[array_rand($lines)];
}

// 获取图片链接
if ($category) {
    $filePath = getFilePath($category);
    if (!$filePath) {
        header("HTTP/1.0 404 Not Found");
        echo "Category not found.";
        exit;
    }
} else {
    if (isMobile()) {
        $filePath = $default_mob_file;
    } else {
        $filePath = $default_pc_file;
    }
    if (!file_exists($filePath)) {
        $filePath = $default_file;
    }
}

$imageUrl = getRandomLine($filePath);
if ($imageUrl) {
    header('Content-Type: image/jpeg');
    readfile($imageUrl);
} else {
    header("HTTP/1.0 404 Not Found");
    echo "Image not found.";
}
?>

这段代码包括自动设备识别,遍历txt文本中的链接并随机输出。

二、新建imgtxt文件夹

这是用于存放各种链接的地方,例如pc-pixiv.txt(存放二次元横图),mob-ai.txt(存放AI竖图)等等,注意txt文档每行一个链接,用mob和pc区分不同的设备图片,.txt文件命名格式为mob-分类名称.txt或者pc-分类名称.txt,例如mob-photography.txt。

三、调用方法

调用格式为 https://你的网站地址/api.php?category=分类 参考下面:

https://rpic.origz.com/api.php?category=pixiv

上面就是基本功能的实现,下面为网站界面搭建,如果你仅仅只是需要个api,那么无需往下看,如果你想搭建完整网站,你可以接着看。

四、界面搭建

1、新建index.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>源初云随机图片API</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.css">
    <link rel="stylesheet" href="styles.css">
    <link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
    <nav class="navbar">
        <ul>
            <li><a href="https://rpic.origz.com"><i data-feather="home"></i> 首页</a></li>
            <li><a href="https://blog.origz.com"><i data-feather="file-text"></i> 博客</a></li>
            <li><a href="https://github.com/keemoir"><i data-feather="github"></i> Github</a></li>
            <li><a href="about.html"><i data-feather="info"></i> 关于</a></li>
        </ul>
    </nav>
    <div class="announcement">
        <i data-feather="alert-circle"></i>
        <p>欢迎使用源初云随机图片Api,图片自适应系统,只需要选择不同图片类型即可。</p>
    </div>
    <main class="container">
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=photography" alt="photography">
            </div>
            <h3>摄影记录</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=pixiv" alt="pixiv">
            </div>
            <h3>二次元</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=ai" alt="ai">
            </div>
            <h3>AI绘图</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=aesthetic" alt="aesthetic">
            </div>
            <h3>唯美场景</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=science" alt="science">
            </div>
            <h3>科幻未来</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=texture" alt="texture">
            </div>
            <h3>质感设计</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=histogram" alt="histogram">
            </div>
            <h3>方图</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
        <div class="card">
            <div class="image-container">
                <img src="https://rpic.origz.com/api.php?category=gif" alt="gif">
            </div>
            <h3>gif动图</h3>
            <div class="buttons">
                <button class="copy-btn"><i data-feather="copy"></i> 复制</button>
                <button class="view-btn"><i data-feather="grid"></i> 一览</button>
            </div>
        </div>
    </main>
   <!--建议保留作者信息哦,谢谢啦 -->
    <footer>
       <p>© 2024 RpicAPI | Powered by <a href="https://github.com/keemoir" style="text-decoration: none; color: inherit;">KeeMo</a> | 备案号:<a href="https://beian.miit.gov.cn" style="text-decoration: none; color: inherit;">津ICP备xxxxxxx号</a> | 源初云提供CDN加速服务</p>
    </footer>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script>
        feather.replace();
    </script>
    <script src="script.js"></script>
</body>
</html>
2、新建styles.css
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #e0eafc, #cfdef3); /* 渐变背景色 */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 20px; /* 与顶部距离 */
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6); /* 半透明背景 */
    padding: 1rem;
    border-radius: 15px; /* 圆角 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 60%; /* 导航栏宽度适应PC设备,稍微小一点 */
    max-width: 90%;
    display: flex;
    justify-content: center;
    overflow-x: auto; /* 水平滚动 */
    padding-left: 5rem; /* 左侧内边距 */
    padding-right: 2rem; /* 右侧内边距 */
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem; /* 调整间距 */
    width: 100%;
    justify-content: center; /* 居中对齐项目 */
}

.navbar ul li {
    display: inline;
}

.navbar a {
    color: #6e57e0;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* 图标与文字间距 */
    white-space: nowrap; /* 不换行 */
}

.announcement {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6); /* 半透明背景 */
    border-radius: 10px;
    margin: 120px auto 20px; /* 与导航栏及内容的距离 */
    padding: 1rem;
    max-width: 80%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem; /* 图标与文字间距 */
}

.announcement i {
    color: #6e57e0;
}

.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem;
}

.card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.6); /* 半透明背景 */
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-container {
        padding-top: 177.78%; /* 9:16 aspect ratio */
    }
}

.card h3 {
    margin: 1rem 0;
    color: #6e57e0;
}

.buttons {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.copy-btn, .view-btn {
    background: #6e57e0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* 图标与文字间距 */
}

.copy-btn:hover, .view-btn:hover {
    background: #5941c6;
}

footer {
    backdrop-filter: blur(10px);
    background: linear-gradient(to right, #e0eafc, #cfdef3); /* 渐变背景色 */
    padding: 1rem;
    text-align: center;
    margin-top: auto;
    color: #6e57e0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 九宫格显示 */
    grid-gap: 10px; /* 图片框之间的间距 */
    padding: 10px; /* 内边距 */
    margin-top: 5px; /* 与顶部的外边距 */
}

.gallery-item {
    position: relative;
    width: 100%; /* 图片框宽度为父元素宽度的100% */
    overflow: hidden; /* 裁切溢出内容 */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片裁剪显示 */
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 在小屏幕上一行显示两列 */
    }
}

@media (min-width: 769px) {
    .gallery-item img {
        height: auto; /* 确保在宽屏设备上图片高度自适应 */
    }
}
3、新建script.js
document.addEventListener('DOMContentLoaded', function() {
    document.querySelectorAll('.copy-btn').forEach(button => {
        button.addEventListener('click', function() {
            const imgElement = this.parentElement.previousElementSibling.previousElementSibling.firstElementChild;
            const link = imgElement.src;
            navigator.clipboard.writeText(link).then(() => {
                alert('API链接已复制:' + link);
            }).catch(err => {
                alert('复制失败:', err);
            });
        });
    });

    document.querySelectorAll('.view-btn').forEach(button => {
        button.addEventListener('click', function() {
            const category = this.parentElement.previousElementSibling.previousElementSibling.firstElementChild.alt.split('类')[0];
            window.location.href = `gallery.html?category=${category.toLowerCase()}`;
        });
    });
});
4、新建get_images.php
<?php
// 获取分类参数
$category = $_GET['category'];

// 根据设备类型确定分类文件名
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false) {
    $fileName = 'mob-' . $category . '.txt';  // 手机设备
} else {
    $fileName = 'pc-' . $category . '.txt';   // PC 设备
}

// 定义图片文件夹路径和分类文件名
$imageFolder = 'imgtxt/';
$file = $imageFolder . $fileName;

// 检查文件是否存在
if (file_exists($file)) {
    // 读取文件内容
    $images = file($file, FILE_IGNORE_NEW_LINES);

    // 输出为 JSON 格式
    echo json_encode($images);
} else {
    // 如果文件不存在,返回空数组
    echo json_encode([]);
}
?>
5、新建gallery.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>源初云随机图片API - 图片库</title>
    <link rel="stylesheet" href="styles.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.css">
</head>
<body>
    <nav class="navbar">
        <ul>
            <li><a href="https://rpic.origz.com"><i data-feather="home"></i> 首页</a></li>
            <li><a href="https://blog.origz.com"><i data-feather="file-text"></i> 博客</a></li>
            <li><a href="https://github.com/keemoir"><i data-feather="github"></i> Github</a></li>
            <li><a href="about.html"><i data-feather="info"></i> 关于</a></li>
        </ul>
    </nav>
 <div class="announcement">
        <i data-feather="alert-circle"></i>
        <p>欢迎使用源初云随机图片Api,这里可以查看图片库里面的所有图片</p>
    </div>
    <div class="gallery">
        <!-- 图片将在这里显示 -->
    </div>
   <!--建议保留作者信息哦,谢谢啦 -->
    <footer>
     <p>© 2024 RpicAPI | Powered by <a href="https://github.com/keemoir" style="text-decoration: none; color: inherit;">KeeMo</a> | 备案号:<a href="https://beian.miit.gov.cn" style="text-decoration: none; color: inherit;">津ICP备xxxxxxx号</a> | 源初云提供CDN加速服务</p>
    </footer>

    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function() {
            // 获取分类参数
            const urlParams = new URLSearchParams(window.location.search);
            const category = urlParams.get('category');

            // 发送请求获取图片链接
            $.getJSON(`get_images.php?category=${category}`, function(data) {
                // 遍历图片链接,并显示在页面上
                data.forEach(function(image) {
                    const imgElement = document.createElement('img');
                    imgElement.src = image;
                    imgElement.alt = '图片';
                    imgElement.classList.add('gallery-item');
                    document.querySelector('.gallery').appendChild(imgElement);
                });
            });

            // 加载 Feather Icons 图标
            feather.replace();
        });
    </script>
</body>
</html>

ok,上面基本是所有步骤了,这样一个随机图片Api网站就搭建好了,整个项目的代码我已经开源到Github上了,你可以直接git clone下载,可以的话别玩点个star哦。

  • alipay_img
  • wechat_img
一个人行走的范围便是他的全世界
最后更新于 2024-07-02