Hi Sir,
Just Reporting: croptool not functioning if layers count is bigger than 1.
CropTool.dpr RotateAndCrop.dpr demos load only 1 layers and crop tool works as expected. but not functionig for multiple layers.
I wanttto croptool.enact to all layers under crop grip.
I tried a code as below but no difference. just not functioning.
for i := 0 to iev.LayersCount - 1 do
iev.Layers[i].Cropped := True;
iev.LayersCropped := True;
iev.Update;
(I temporary resolved to merge all layers into one to make croptool work.)