this post was submitted on 26 Aug 2025
140 points (96.1% liked)

Selfhosted

50943 readers
660 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Copying this from Reddit (I still get the daily emails). Since I no longer post there, I figured I would ask here, and include my prediction: Will be more popular, possibly in stable release. Still won't be able to rotate photos natively.

you are viewing a single comment's thread
view the rest of the comments
[–] cron@feddit.org 46 points 2 days ago (5 children)

Just an idea: Maybe a simple photo editor would fit in nicely? Crop, rotate and adjust the colors/brightness/contrast.

And ... please let me rotate videos that are accidentally 90 degrees off.

[–] AmbitiousProcess@piefed.social 36 points 2 days ago (1 children)

Maybe a simple photo editor would fit in nicely?

Basic photo editing capabilities are planned after stable release, this year :)

[–] ripcord@lemmy.world 5 points 2 days ago

That's what they said last year! And the year before!

Maybe not the stable part.

[–] XLE@piefed.social 9 points 2 days ago (1 children)

FWIW Ente just added photo editing

[–] illusionist@lemmy.zip 11 points 2 days ago (1 children)

Ente is a great project but with immich as a competitor it has a hard time

[–] uzay@infosec.pub 1 points 23 hours ago (1 children)

What's better about immich? I haven't used either

[–] illusionist@lemmy.zip 3 points 19 hours ago (1 children)

Immich has traction. That's why it stands out from all the other projects, imo.

https://github.com/meichthys/foss_photo_libraries

[–] uzay@infosec.pub 2 points 6 hours ago

I see. Thanks for the link! I might try out immich once they have a stable version, but I might try out ente before that

[–] MrRazamataz@lemmy.razbot.xyz 6 points 1 day ago (1 children)

Does it not already have basic image editing? I can crop/rotate and apply some preset filters.

collapsed inline media

collapsed inline media

[–] cron@feddit.org 7 points 1 day ago (1 children)

I disagree.

Yes, there is some editing capability in the app, but it doesn't edit the image, it stores a new file in your local (non-immich) gallery. As I don't sync this particular folder on my phone, I had to reupload it - and now have this image twice in immich, and one version with the wrong timestamp (now).

That's barely any more helpful than downloading the image and editing it with another app.

[–] d00phy@lemmy.world 2 points 1 day ago

I think this highlights the difficulty with “basic” image editing. For example, with G Photos or Mac Photos, or others, you can edit, and the edited version is what you’ll see by default going forward, but the original is still there. This is why I highlighted rotation. That’s strictly a metadata change, AFAIK. Last thing I read on their site was they were hung up getting it to work properly with HEIF.

[–] Xylight@lemdro.id 2 points 2 days ago (1 children)

Forgive me if I'm being dumb... But is there a way to share a photo with my own editor, then save the result as an "edited" version of that asset? Currently if I send it to Snapseed, and save it, it will be placed in a different random folder

[–] d00phy@lemmy.world 1 points 1 day ago

I don’t think so. I think for any kind of editing, they’d need to implement some kind of asset versioning.

[–] rarsamx@lemmy.ca 2 points 2 days ago (2 children)

I'm just learning about the software but all the tasks you listed (crop, rotate and adjust), can be done easily with imagemagick simple one-liners.

For example: Convert in.jpg -rotate out.jpg

Or

Using the auto-orient option or using jhead.

Why is it so hard for this app to implement it?

[–] majoru@feddit.org 3 points 17 hours ago

Former Immich dev here:

Even in the early days, we got hundreds of different feature requests that “can be done easily”. Even this example is a lot harder than you might think.

  • Since all clients work differently, this probably has to be done server-side, requires a new endpoint, caching logic, client support.
  • Immich supports a ton of file formats, the solution has to work with all of them.
  • We must not lose meta data, quality or alter the image in some other way, Immich is a backup tool, file integrity is a top priority.

If you have an idea, how to tackle all of this, contact the dev team on Discord, they’re really helpful and will surely guide you through the process of implementing.

[–] cron@feddit.org 3 points 1 day ago* (last edited 1 day ago) (1 children)

I know nothing about coding, but its probably not trivial in a project the size of immich to add "one simple one-liner".

Think of the Web UI, the mobile apps, the internal API, the filesystem handling, preview generation etc.

I'm sure it can be done, but it probably takes a couple of days.

[–] 8uurg@lemmy.world 2 points 1 day ago (2 children)

Also ImageTragick was a thing, there are definitely security implications to adding dependencies to implement a feature in this way (especially on a shared instance). The API at the very least needs to handle auth, so that your images and videos don't get rotated by others.

Then you have UX, you may want to show to the user that things have rotated (otherwise button will be deemed non-functional, even if it uses this one-liner behind the scenes), but probably don't want to transfer the entire video multiple times to show this (too slow, costs data).

Yeah, it is one thing to add a one liner, but another to make a well implemented feature.

[–] cron@feddit.org 1 points 1 day ago (1 children)

I would add file types to the list. JPEG is easy to rotate, but what about other image filetypes, images with embedded video, different video file formats etc.

[–] rarsamx@lemmy.ca 1 points 1 day ago

You can start with what you can. What can provide the most value and iteratively improve from there.

Sometimes as a developer or even product manager, you don't know what feature complete really means until people start using it.

Oh, by the way: https://imagemagick.org/script/formats.php

[–] rarsamx@lemmy.ca 1 points 1 day ago

Once you implement Authentication/Authorization it's fairly simple to add a new function.

I think here, the problem is not the complexity of the task, but the developer's prioritization based on all the backlogged features.

Still, users can do this on their own. Directly on the folder, autorotating all pictures using wildcards.