-3

我正在创建一个 php 图片库,经过长时间的搜索,我在 google 上找到了一个很好的 php 图片库代码。当我单击图像的缩略图时,它会发送到原始图像位置,但不是原始图像,而是我想将用户发送到显示相同图像的不同页面!

这是代码!

<?php   # SETTINGS


        $max_width = 200;
        $max_height = 200;
        $per_page = 9;

        $page = $_GET['page'];

        $has_previous = false;
        $has_next = false;

        function getPictures() {
            global $page, $per_page, $has_previous, $has_next;
            if ( $handle = opendir(".") ) {
                $lightbox = rand();
                echo '<ul id="pictures">';

                $count = 0;
                $skip = $page * $per_page;

                if ( $skip != 0 )
                    $has_previous = true;

                while ( $count < $skip && ($file = readdir($handle)) !== false ) {
                    if ( !is_dir($file) && ($type = getPictureType($file)) != '' )
                        $count++;
                        }

                $count = 0;
                while ( $count < $per_page && ($file = readdir($handle)) !== false ) {
                    if ( !is_dir($file) && ($type = getPictureType($file)) != '' ) {
                        if ( ! is_dir('thumbs') ) {
                            mkdir('thumbs');
                        }
                        if ( ! file_exists('thumbs/'.$file) ) {
                            makeThumb( $file, $type );
                        }

                        echo '<li><a href="'.$file.'" rel="lightbox['.$lightbox.']">';

                        echo '<img src="thumbs/'.$file.'" alt="" />';

                        echo '<div class="fb">view</div></a></li>';


                        $count++;

                    }

                }

                echo '</ul>';

                while ( ($file = readdir($handle)) !== false ) {
                    if ( !is_dir($file) && ($type = getPictureType($file)) != '' ) {
                        $has_next = true;
                        break;
                    }
                }
            }
        }

        function getPictureType($file) {
            $split = explode('.', $file); 
            $ext = $split[count($split) - 1];
            if ( preg_match('/jpg|jpeg/i', $ext) ) {
                return 'jpg';
            } else if ( preg_match('/png/i', $ext) ) {
                return 'png';
            } else if ( preg_match('/gif/i', $ext) ) {
                return 'gif';
            } else {
                return '';
            }
        }

        function makeThumb( $file, $type ) {
            global $max_width, $max_height;
            if ( $type == 'jpg' ) {
                $src = imagecreatefromjpeg($file);
            } else if ( $type == 'png' ) {
                $src = imagecreatefrompng($file);
            } else if ( $type == 'gif' ) {
                $src = imagecreatefromgif($file);
            }
            if ( ($oldW = imagesx($src)) < ($oldH = imagesy($src)) ) {
                $newW = 220;
                $newH = $max_height;
            } else {
                $newW = $max_width;
                $newH = 200;
            }
            $new = imagecreatetruecolor($newW, $newH);
            imagecopyresampled($new, $src, 0, 0, 0, 0, $newW, $newH, $oldW, $oldH);
            if ( $type == 'jpg' ) {
                imagejpeg($new, 'thumbs/'.$file);
            } else if ( $type == 'png' ) {
                imagepng($new, 'thumbs/'.$file);
            } else if ( $type == 'gif' ) {
                imagegif($new, 'thumbs/'.$file);
            }
            imagedestroy($new);
            imagedestroy($src);
        }
    ?>

对不起,我的英语不好,希望你能理解我的问题!

4

1 回答 1

2

此代码在图片链接中包含一个 rel="lightbox['.$lightbox.']。它期望在浏览器中使用 Lightbox 来显示图片。Lightbox 是一个 JavaScript 库(也有很多克隆)在现有页面上显示图像并使背景变灰。这非常好。您可能想研究使用 Lightbox 来显示图像。

否则,您将需要修改该行:

echo '<li><a href="'.$file.'" rel="lightbox['.$lightbox.']">';

以便 href 指向您想要的页面,其中 $file 作为 URL 中的 GET 值。如果你这样做了,你应该取出 rel= 因为你不会使用它。它不会伤害任何东西,但如果您不使用 Lightbox,它只会变得混乱。例如:

echo '<li><a href="display.php?image='.$file.'">';

其中 display.php 是显示图像的页面。

于 2013-01-01T20:53:44.783 回答