* @throws GalleyVisitorException If a destination already exists.
*/
private void renderDestinations(final Area area) throws GalleyVisitorException {
final String destinationName = area.destinationName();
if (destinationName != null) {
final PdfDestination explicitDest =
this.currentPage.createDestination(
toPoints(area.crOriginX()),
toPoints(area.crOriginY()));
try {
explicitDest.registerName(destinationName);
} catch (final PdfException e) {
throw new GalleyVisitorException(e);
}
}
if (area.isLinkRoot()) {