Convert Figma logo to code with AI

meichthys logofoss_photo_libraries

Free and Open Source Photo Libraries

2,037
50
2,037
20

Top Related Projects

AI-Powered Photos App for the Decentralized Web 🌈💎✨

A self-hosted open source photo management service. This is the repository of the backend.

3,459

A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.

6,323

A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.

54,187

High performance self-hosted photo and video management solution.

Quick Overview

The meichthys/foss_photo_libraries repository is a curated list of Free and Open Source Software (FOSS) photo libraries and management tools. It provides a comprehensive collection of software options for photographers and enthusiasts looking for alternatives to proprietary photo management solutions.

Pros

  • Extensive list of FOSS photo management tools
  • Categorized for easy navigation (e.g., DAM, RAW processors, AI-assisted tools)
  • Includes brief descriptions and links for each listed software
  • Regularly updated with new additions and changes

Cons

  • Limited detailed information about each tool
  • No direct comparisons or recommendations between listed software
  • Lacks user reviews or ratings for the listed tools
  • Some listed projects may be in various stages of development or maintenance

Getting Started

To use this resource:

  1. Visit the GitHub repository: https://github.com/meichthys/foss_photo_libraries
  2. Browse through the README.md file to explore the categorized list of photo libraries and tools
  3. Click on the links provided for each tool to visit their respective websites or repositories for more information
  4. Consider starring or watching the repository to stay updated on new additions and changes

Competitor Comparisons

AI-Powered Photos App for the Decentralized Web 🌈💎✨

Pros of PhotoPrism

  • More feature-rich and actively developed photo management solution
  • Offers advanced AI-powered image classification and face recognition
  • Provides a polished, user-friendly web interface for easy navigation

Cons of PhotoPrism

  • Requires more system resources due to its comprehensive feature set
  • May have a steeper learning curve for new users
  • Less focused on providing a curated list of FOSS photo libraries

Code Comparison

PhotoPrism (Go):

func (m *Search) Photos(f form.SearchPhotos) (results PhotoResults, err error) {
    if err := f.ParseQueryString(); err != nil {
        return results, err
    }

    s := UnscopedDb().Table("photos").Select("photos.*")
    // ... (additional code)
}

FOSS Photo Libraries (Markdown):

## Photo Libraries

- [PhotoPrism](https://github.com/photoprism/photoprism) - Personal Photo Management powered by Go and Google TensorFlow
- [Lychee](https://github.com/LycheeOrg/Lychee) - A great looking and easy-to-use photo-management-system you can run on your server
- [Piwigo](https://github.com/Piwigo/Piwigo) - Piwigo is a full featured open source photo gallery application for the web

The code comparison shows that PhotoPrism is a full-fledged application with complex functionality, while FOSS Photo Libraries is a curated list of photo management solutions in Markdown format.

A self-hosted open source photo management service. This is the repository of the backend.

Pros of LibrePhotos

  • Active development with frequent updates and contributions
  • More comprehensive feature set, including face recognition and object detection
  • Robust documentation and installation guides

Cons of LibrePhotos

  • Higher system requirements and more complex setup process
  • Steeper learning curve for users and administrators
  • Potentially overwhelming for users seeking a simpler photo management solution

Code Comparison

LibrePhotos (Python):

from django.db import models
from django.contrib.auth.models import User

class Photo(models.Model):
    image = models.ImageField(upload_to='photos')
    owner = models.ForeignKey(User, on_delete=models.CASCADE)

foss_photo_libraries (Markdown):

## Photo Management Software

- [Photoprism](https://photoprism.app/)
- [Lychee](https://lycheeorg.github.io/)
- [Piwigo](https://piwigo.org/)

LibrePhotos is a full-fledged photo management application with a Django backend, while foss_photo_libraries is a curated list of open-source photo management solutions. LibrePhotos offers a more integrated experience but requires more resources, whereas foss_photo_libraries provides a simple overview of various options for users to explore based on their needs.

3,459

A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.

Pros of Lychee

  • Actively maintained with regular updates and bug fixes
  • Supports multiple users and access control
  • Offers a sleek, modern web interface for photo management

Cons of Lychee

  • Requires more setup and configuration compared to a simple list
  • May be overkill for users seeking a basic photo library overview
  • Limited to self-hosted environments, not suitable for quick reference

Code Comparison

Lychee (PHP):

public function upload(Request $request)
{
    $request->validate(['photo' => 'required|image']);
    $photo = $request->file('photo');
    $filename = time() . '.' . $photo->getClientOriginalExtension();
    $photo->move(public_path('uploads'), $filename);
}

foss_photo_libraries (Markdown):

## PhotoPrism
- [Website](https://photoprism.app/)
- [GitHub](https://github.com/photoprism/photoprism)
- License: AGPL-3.0

PhotoPrism is an AI-powered photo app for the decentralized web.

The code comparison highlights the difference in approach between the two projects. Lychee is a full-fledged photo management application with server-side logic, while foss_photo_libraries is a curated list of photo library projects in Markdown format.

6,323

A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.

Pros of Lychee

  • More mature and actively maintained project with regular updates
  • Offers a polished, user-friendly web interface for managing photos
  • Supports multiple users and sharing options

Cons of Lychee

  • Requires more setup and server resources to run
  • Limited to self-hosted installations, not suitable for quick local use
  • May have a steeper learning curve for non-technical users

Code Comparison

Lychee (PHP):

$photo = new Photo($database, $settings, $this->sessionFunctions);
$photo->preDecode($photoArray);
$photo->save();

foss_photo_libraries (Python):

photo = Photo(image_path)
photo.process()
library.add_photo(photo)

While both projects deal with photo management, Lychee is a full-fledged web application, whereas foss_photo_libraries is a Python library for building photo management tools. Lychee offers a complete solution out of the box, while foss_photo_libraries provides more flexibility for developers to create custom photo management applications.

54,187

High performance self-hosted photo and video management solution.

Pros of immich

  • Active development with frequent updates and new features
  • Mobile apps available for iOS and Android
  • Supports video files in addition to photos

Cons of immich

  • More complex setup and infrastructure requirements
  • Higher resource usage due to additional features
  • Less focus on simplicity and minimalism

Code comparison

immich (TypeScript):

export async function generateImageThumbnail(
  assetPath: string,
  outputPath: string,
): Promise<void> {
  await sharp(assetPath).resize(250, 250, { fit: 'cover' }).toFile(outputPath);
}

foss_photo_libraries (Python):

def generate_thumbnail(image_path, output_path, size=(250, 250)):
    with Image.open(image_path) as img:
        img.thumbnail(size)
        img.save(output_path)

Both projects provide thumbnail generation functionality, but immich uses the sharp library in TypeScript, while foss_photo_libraries uses the Pillow library in Python. The immich implementation offers more precise control over the resizing method, while the foss_photo_libraries approach is simpler and more concise.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

📸 Free and OpenSource Photo Libraries

There are many great free and open-source alternatives to closed source and/or paid photo libraries. This project aims to track and compare the feature set between the many different options with a focus on 'Gratis' (free as in free beer) open source photo libraries. 'Libre' (free as in free speech) projects are also welcome, but will likely need to be submitted via a pull request since the time in testing each different project is significant.

⚠️ Disclaimer: This repository displays both objective and subjective measures of feature quality. The owner of this repository reserves the right to make changes to any pull request.

⚖️ Comparison

✅ = Feature exists in at least a limited fashion
🚧 = Feature may exist but may not be practical or officially released
❌ = Feature does not yet exist
#️⃣ = Subjective measure of feature quality (on scale of 0-10)
Tip: Hover over emoji for additional information (🔗 link to related issue, 🔑 demo credentials, etc)
FeatureCheveretoDamselflyEnteHomeGalleryImmichLibrephotosLycheeNextcloud PhotosNextcloud MemoriesPhotonixPhotofieldPiGallery2PhotoprismPhotoviewPiwigoSnapcrescent
LogoChevreto  LogoDameslfly  LogoEnte LogoHomeGallery  LogoImmich LogoLibrephotos LogoLychee LogoNextcloudPhotos LogoMemories LogoPhotonix LogoPhotofield LogoPiGallery2 LogoPhotoprism LogoPhotoview LogoPiwigo LogoSnapcrescent Logo
Github Stars????????????????
Contributors????????????????
Last Commit????????????????
Source Language???GitHub top language?GitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top languageGitHub top language
License????????????????
Demo✅5️⃣❌✅3️⃣✅6️⃣✅8️⃣✅5️⃣✅9️⃣✅4️⃣✅8️⃣✅8️⃣✅6️⃣✅8️⃣✅9️⃣✅9️⃣✅9️⃣✅9️⃣
Freeness✅5️⃣✅🔟✅🔟✅🔟✅🔟✅🔟✅🔟✅🔟✅🔟✅🔟✅🔟✅🔟🚧7️⃣✅🔟✅🔟✅🔟
Automatic Mobile Upload❌❌✅8️⃣❌✅8️⃣❌❌✅7️⃣✅7️⃣❌❌❌✅6️⃣❌✅7️⃣✅7️⃣
Web App✅8️⃣✅8️⃣✅8️⃣✅8️⃣✅8️⃣✅8️⃣✅8️⃣✅7️⃣✅9️⃣✅7️⃣✅9️⃣✅7️⃣✅7️⃣✅8️⃣✅8️⃣✅7️⃣
Android App❌❌✅8️⃣❌✅8️⃣✅7️⃣❌✅3️⃣✅7️⃣✅4️⃣❌❌🚧4️⃣🚧3️⃣✅7️⃣✅7️⃣
iOS App❌❌✅8️⃣❌✅8️⃣🚧3️⃣❌🚧3️⃣🚧3️⃣✅4️⃣❌❌🚧4️⃣✅6️⃣✅7️⃣❌
Desktop App❌✅9️⃣✅8️⃣✅8️⃣❌❌❌🚧2️⃣🚧2️⃣❌❌❌❌❌❌❌
LivePhotos❌❌✅8️⃣❌✅9️⃣❌✅6️⃣✅️3️⃣✅8️⃣❌❌❌✅7️⃣❌❌❌
Videos✅7️⃣❌✅6️⃣✅6️⃣✅8️⃣✅8️⃣✅6️⃣✅5️⃣✅7️⃣❌✅6️⃣✅8️⃣✅7️⃣✅7️⃣✅4️⃣✅7️⃣
Geolocation/Map❌✅7️⃣✅6️⃣✅8️⃣✅7️⃣✅8️⃣✅5️⃣✅6️⃣✅9️⃣✅9️⃣✅8️⃣✅8️⃣✅6️⃣✅8️⃣✅7️⃣❌
Discovery✅2️⃣❌✅6️⃣❌✅6️⃣✅7️⃣✅6️⃣✅6️⃣✅7️⃣❌❌❌✅6️⃣❌✅1️⃣❌
Existing Folders❌✅7️⃣✅6️⃣❌✅7️⃣✅4️⃣❌✅7️⃣✅9️⃣❌✅4️⃣✅5️⃣✅9️⃣✅5️⃣✅7️⃣❌
Albums✅8️⃣❌✅9️⃣❌✅8️⃣✅9️⃣✅8️⃣✅4️⃣✅8️⃣✅5️⃣❌✅6️⃣✅8️⃣✅6️⃣✅8️⃣✅5️⃣
Slideshow❌✅4️⃣✅3️⃣❌✅5️⃣❌✅4️⃣✅5️⃣✅5️⃣❌✅6️⃣✅7️⃣✅6️⃣❌✅5️⃣❌
Timeline✅3️⃣✅5️⃣✅8️⃣✅3️⃣✅8️⃣✅9️⃣❌✅4️⃣✅9️⃣✅5️⃣✅6️⃣✅5️⃣✅5️⃣✅9️⃣✅3️⃣✅5️⃣
Sharing✅7️⃣❌✅8️⃣❌✅7️⃣✅9️⃣✅9️⃣✅8️⃣✅9️⃣❌❌✅7️⃣✅7️⃣✅8️⃣✅5️⃣✅5️⃣
Search✅5️⃣✅8️⃣✅6️⃣✅7️⃣✅9️⃣✅8️⃣✅5️⃣✅4️⃣✅4️⃣✅8️⃣✅9️⃣✅7️⃣✅8️⃣✅5️⃣✅7️⃣❌
Duplicate Handling✅5️⃣❌✅7️⃣❌✅7️⃣❌✅5️⃣✅6️⃣✅6️⃣❌❌✅5️⃣✅6️⃣❌✅6️⃣✅7️⃣
User Defined Tags✅7️⃣✅7️⃣❌✅7️⃣✅️6️⃣❌✅5️⃣✅️3️⃣✅️6️⃣✅6️⃣✅6️⃣❌✅5️⃣❌✅7️⃣❌
Docker Installation✅8️⃣✅8️⃣✅3️⃣✅8️⃣✅7️⃣✅7️⃣✅7️⃣✅6️⃣✅6️⃣✅8️⃣✅7️⃣✅7️⃣✅6️⃣✅8️⃣✅7️⃣✅8️⃣
Object/Face Recognition❌✅8️⃣🚧✅6️⃣✅9️⃣✅8️⃣❌✅8️⃣✅8️⃣✅8️⃣✅7️⃣✅6️⃣✅9️⃣✅6️⃣✅5️⃣❌
Basic Editing✅1️⃣❌✅6️⃣❌✅4️⃣❌❌✅6️⃣✅6️⃣❌❌❌❌❌❌❌
EXIF Data✅3️⃣✅9️⃣✅7️⃣✅7️⃣✅6️⃣❌✅7️⃣❌✅8️⃣✅7️⃣✅️3️⃣✅7️⃣✅9️⃣✅7️⃣✅6️⃣✅7️⃣
Multiple User Support✅8️⃣✅7️⃣✅9️⃣❌✅8️⃣✅8️⃣✅6️⃣✅9️⃣✅9️⃣✅7️⃣❌✅7️⃣❌✅6️⃣✅8️⃣✅5️⃣
Authentication Providers✅5️⃣❌❌❌✅7️⃣❌❌✅9️⃣✅9️⃣❌❌❌🚧❌✅5️⃣❌

Note: This list is by no means comprehensive and is provided on a best efforts basis. No guarantees are made to it's accuracy or completeness. If you see an error or inaccuracy, please report it and contribute a fix if you can!

For links to other photo library projects, see:

An HTML version of this comparison table is here: https://meichthys.github.io/foss_photo_libraries/

👋 More Feature Comparisons

Check out my other feature comparisons:

📝 foss_note_apps

🤝 Contributing

Please contribute additions and corrections! When contributing, please add links to the source of the information. (i.e. link to an issue that indicates that a feature does not exist) Tip: Using a Markdown Editor helps with formatting.

🆘 Support

Maintaining this list of projects takes a lot of time. If you found this comparison helpful, please let me know by considering supporting me. This lets me know that someone is finding this project useful and gives me an incentive to keep it up to date. You can support me on Liberapay or Github Sponsors:

Donate using Liberapay