Would it be possible to change com\lowagie\text\pdf\PdfDocument.java from this
void setCropBoxSize(Rectangle crop) {
cropSize = new Rectangle(crop);
}
to this?
void setCropBoxSize(Rectangle crop) {
if (crop != null)
cropSize = new Rectangle(crop);
else
cropSize = crop;
}
That would allow the crop box to be turned back off. I would try it myself except my company has the CVS ports blocked.
Thanks,
Paul
