All Projects → mikelothar → show-all-images-in-a-folder-with-php

mikelothar / show-all-images-in-a-folder-with-php

Licence: other
Show all images in a folder with PHP. A simple PHP tool to list all images in a folder.

Programming Languages

PHP
23972 projects - #3 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to show-all-images-in-a-folder-with-php

Django Photoblog
Photographer portfolio website powered by Django Framework. Features photo gallery with infinite scrolling, tagging, thumbnail generation and CMS for creating pages. Configured for Heroku and S3.
Stars: ✭ 19 (-63.46%)
Mutual labels:  photo-gallery
Stfalconimageviewer
A simple and customizable Android full-screen image viewer with shared image transition support, "pinch to zoom" and "swipe to dismiss" gestures
Stars: ✭ 1,734 (+3234.62%)
Mutual labels:  photo-gallery
Aphotomanager
Manage local photos on Android: gallery, geotag with photomap, privacy, tags, find, sort, view, copy, send, ... .
Stars: ✭ 164 (+215.38%)
Mutual labels:  photo-gallery
Lychee V3
A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.
Stars: ✭ 1,007 (+1836.54%)
Mutual labels:  photo-gallery
Picker
Picker - A CameraX based WhatsApp Style Image-Video Picker
Stars: ✭ 69 (+32.69%)
Mutual labels:  photo-gallery
React Bnb Gallery
Simple react-based photo gallery inspired by Airbnb image gallery.
Stars: ✭ 145 (+178.85%)
Mutual labels:  photo-gallery
Spotlight
Web's most easy to integrate lightbox gallery library. Super-lightweight, outstanding performance, no dependencies.
Stars: ✭ 799 (+1436.54%)
Mutual labels:  photo-gallery
envadrouille
Fast and customizable photo gallery.
Stars: ✭ 18 (-65.38%)
Mutual labels:  photo-gallery
Piwigo
Manage your photos with Piwigo, a full featured open source photo gallery application for the web. Star us on Github! More than 200 plugins and themes available. Join us and contribute!
Stars: ✭ 1,346 (+2488.46%)
Mutual labels:  photo-gallery
Chevereto Free
Self-hosted Image Hosting solution. Start your own Flickr/imgur alternative with your own rules.
Stars: ✭ 2,275 (+4275%)
Mutual labels:  photo-gallery
Phugo
Phugo [ˈfjuːgəʊ] is a gallery/photoblog theme for Hugo.
Stars: ✭ 51 (-1.92%)
Mutual labels:  photo-gallery
Gmimagepicker.xamarin
Port of the original GMImagePicker component to Xamarin.iOS
Stars: ✭ 65 (+25%)
Mutual labels:  photo-gallery
Bootstrap Photo Gallery
jQuery plugin that converts your list of images into a grid-based gallery on Bootstrap 4. Supports larger view in a modal with next / previous controls
Stars: ✭ 156 (+200%)
Mutual labels:  photo-gallery
Yimagepicker
小红书多图剪裁+微信图片选择器+大图预览+图片剪裁(支持圆形剪裁和镂空剪裁),已适配androidQ,借鉴并升级matisse加载内核!超强定制性可轻松实现知乎/马蜂窝/微博等特殊样式!支持跨进程回调!内部结构轻量级,无任何第三方开源库!支持support依赖!
Stars: ✭ 975 (+1775%)
Mutual labels:  photo-gallery
Ubergallery
An easy to use, simple to manage, web photo gallery written in PHP.
Stars: ✭ 189 (+263.46%)
Mutual labels:  photo-gallery
Imagepicker
Super Image Picker is a powerful image selector. Support for huge image preview (such as 10000 * 5000px), support for image cropping, configurable avatar mode and normal mode, support for a variety of image load library
Stars: ✭ 891 (+1613.46%)
Mutual labels:  photo-gallery
Photato
Photato - The personal Pictures gallery
Stars: ✭ 130 (+150%)
Mutual labels:  photo-gallery
viewer
🖼 Simple file viewer with slideshow for media
Stars: ✭ 68 (+30.77%)
Mutual labels:  photo-gallery
Zenphoto
The Zenphoto open-source gallery and CMS project
Stars: ✭ 237 (+355.77%)
Mutual labels:  photo-gallery
Photos
📸 Your memories under your control
Stars: ✭ 157 (+201.92%)
Mutual labels:  photo-gallery

Show all images in a folder with PHP

A simple webpage to display all images in a folder. It requires PHP.

Images will display up to a max width of 900 pixels. Images larger than 900 pixels will show their full size if you click it.

You can link to a specific image as they're link anchored. Just click on the specific image and copy the browser URL.

Demo

Setup

The easy way

This works out of the box, so you can either Git clone the repository, or download the zip.

The other way

Add ins-imgs.php and ins-imgs.css in your root folder (or wherever your index file is).

In your index HTML, insert this:

<!-- insert images here -->
<script src="ins-imgs.php"></script>

Settings

In ins-imgs.php you can find the following settings:

    # Path to image folder
    $imageFolder = 'img/';

    # Show only these file types from the image folder
    $imageTypes = '{*.jpg,*.JPG,*.jpeg,*.JPEG,*.png,*.PNG,*.gif,*.GIF}';

    # Set to true if you prefer sorting images by name
    # If set to false, images will be sorted by date
    $sortByImageName = false;

    # Set to false if you want the oldest images to appear first
    # This is only used if images are sorted by date (see above)
    $newestImagesFirst = true;

Make the changes needed for your setup.

Help, bugs, pull requests, etc.

Very welcomed.

Customized implementations

Easy Folio (Demo) by Lukas Spieker

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].