Crop tool for Kirby 4

Hello,

I am in the need of implementing a crop feature inside the panel for the editor to select a part of an image (with a certain predetermined fixed aspect ratio).

In the past I previously used the Image Clip plugin with something like this:

myimages:
  type: image-clip
  query: site.find('photography/animals').images
  layout: cards
  size: small
  clip:
    minwidth: 400
    minheight: 300
    maxwidth: 800
    maxheight: 600
    ratio: fixed

I saw that none of the Crop plugins explicitly say they are compatible with Kirby 4, so I was wondering if this feature had been brought into the core and I had missed it?

Thanks!

Kirby 4 has a built-in focus point feature, where in the Panel you can set a point on an image that is the main focus and then Kirby’s thumbnail methods, such as crop, will make sure o act accordingly. This might already solve your need, but there is no direct equivalent to the plugins in the core of Kirby 4.

Thank you!