Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: X4 features request

22 Oct 2023, 23:07

DmMc28 wrote: AVIF is another option.
Things change...Hope, in few years everyone will have HDR monitors  )
AVIF is quite realistic, since it's already supported in most modern browsers, and PHP already has a function to resize AVIF images. I already added support for AVIF in our Files Gallery.
https://demo.files.gallery/?samples/ima ... ilter=avif
 
Gonepteryx
Posts: 8
Joined: 10 Jun 2019, 13:41

Re: X4 features request

25 Nov 2023, 12:48

mjau-mjau wrote:
DmMc28 wrote: Moreover, can you add reading more IPTC fields from JPG, that Lightroom fills using reverse geocoding feature, like "Country", "Province", "City" and so on... Would like to use these in EXIF, Thanks!
Yes, we can of course support additional IPTC values. Thanks for noting.
I just wonder if there might be a way to "manipulate" Photo.Gallery X3, so that additional IPTC can be displayed, as this seems to work perfectly in Files Gallery. Maybe there is a little hack for me to use while waiting on X4  :thinking:?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: X4 features request

25 Nov 2023, 21:32

Gonepteryx wrote:I just wonder if there might be a way to "manipulate" Photo.Gallery X3, so that additional IPTC can be displayed
Unfortunately, I don't think this is possible, or at best too complicated. IPTC data is created from a file app/asset-types/image.inc.php, but then we use templates like https://github.com/mjau-mjau/x3/blob/master/app/twig/partials/module.gallery.html to render these stored values, and the templates are pre-rendered into unreadable app/templates.

X3 is a bit overcomplicated in many departments, especially in regards to customization.
Gonepteryx wrote:as this seems to work perfectly in Files Gallery.
Indeed Files Gallery is much more flexible in terms of IPTC, and X4 would definitely take a lot of inspiration from Files Gallery.
 
metallissimus
Experienced
Posts: 331
Joined: 17 Oct 2019, 06:54

Re: X4 features request

27 Nov 2023, 04:29

I am currently looking at different CMSs (for other projects that are not as photo heavy as my websites) and what I am taking away from this in regards to X4: I think some sort of "site building" capabilities is something that users expect nowadays and where X3 is too complicated. You have to resort to code to realize even basic layout ideas* like columns or different widths within a single page. Maybe blocks could be an option in X4?
For example: https://automad.org/#feature-block-editor
Just dropping in a gallery block or a folders block whereever one wants would be such an improvement over the rather rigid structure of X3 pages.

* for the content. Gallery layouts are of course  really powerful, maybe even to the point of offering too much configuration options to be intuitive for new users.
www.danielbollinger.de – corporate photography
hochzeiten.danielbollinger.de – wedding photography
 
Gonepteryx
Posts: 8
Joined: 10 Jun 2019, 13:41

Re: X4 features request

27 Nov 2023, 16:20

mjau-mjau wrote:
Gonepteryx wrote:I just wonder if there might be a way to "manipulate" Photo.Gallery X3, so that additional IPTC can be displayed
Unfortunately, I don't think this is possible, or at best too complicated. IPTC data is created from a file app/asset-types/image.inc.php, but then we use templates like https://github.com/mjau-mjau/x3/blob/master/app/twig/partials/module.gallery.html to render these stored values, and the templates are pre-rendered into unreadable app/templates.
Thanks for the explanation. Maybe I'll try my luck anyway when I have some more time. Otherwise I'll wait for X4...
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: X4 features request

27 Nov 2023, 22:38

metallissimus wrote: I am currently looking at different CMSs (for other projects that are not as photo heavy as my websites) and what I am taking away from this in regards to X4: I think some sort of "site building" capabilities is something that users expect nowadays and where X3 is too complicated. You have to resort to code to realize even basic layout ideas* like columns or different widths within a single page. Maybe blocks could be an option in X4?
For example: https://automad.org/#feature-block-editor
Just dropping in a gallery block or a folders block whereever one wants would be such an improvement over the rather rigid structure of X3 pages.
This is of course true. If you are building non-photo related websites, then X3 probably isn't for you, unless you are already acquainted and comfortable with the interface. There are better tools.

I think one of the "problems" with X3 in the first place, is too much trying to be a website CMS, where there are better options in the first place. So for X4, another option may be to simplify, so that's it's primarily a powerful "gallery" tool with less emphasis on content and custom web page creation. I don't think there is much point in discussing this in detail, because it could be that another party steps in, and pulls it in that direction. From my perspective, I would rather make it best at what I can make it best at, without complicating matters.
metallissimus wrote:* for the content. Gallery layouts are of course  really powerful, maybe even to the point of offering too much configuration options to be intuitive for new users.
True.
 
User avatar
Eric
Posts: 21
Joined: 30 Apr 2021, 05:34

Re: X4 features request

17 Jan 2024, 06:16

Karl, it will be useful to have the ability to upgrade the latlong field in edit mode.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: X4 features request

17 Jan 2024, 21:47

Eric wrote: Karl, it will be useful to have the ability to upgrade the latlong field in edit mode.
The only way to achieve this, would be to store unique GPS values in X3 (page.json), and have them override the GPS values from the image's own EXIF. This is because X3/PHP/server can't actually edit EXIF data in the images. It might actually be possible, but it requires a separate library /FileEye/pel and I think it's a bit dodgy overwriting existing EXIF data from server.

But yes, we could perhaps have more X3-local variables that could override EXIF values.