This package provides image cropping for images which reside in ATContentTypes fields in Plone. Those images can be cropped without losing the original images and without adding new images to blobs. It only sets the cropping dimension to the object annotations.
For example:
<div tal:replace="structure python: context.restrictedTraverse('cropped-image')('image', 'small-image')" />
Here, image is the field name and small-image is the ID name.
collective.cropimage works with collective.contentleadimage, too. The image field name is leadImage, so use cropped image like:
<div tal:replace="structure python: context.restrictedTraverse('cropped-image')('leadImage', 'small-image')" />