hope it will help
remember: use it at your own risk, because the problem may different. don't forget to make a backup first.
I think pcDTR is great but i had a problem when using different font. there is always too much space at the top of text like this
i see the cache there is a big image with all text created by pcdtr and it show normal. so i think the problem is not on the image.
i see the page source and found that the problem is in background-position: 0 -...px at every #pcdtr...{...}.
i made a littlle modification at pcdtr.php at line 247
after
$width = $item->get('line-widths');
add
$newposheight = $this->height[$item->get('group', 'default')]+10;
$newheight = $item->get('height')-10;
and at line 249 ( 251 after add two line above )
edit
$css .= "#pcdtr".$this->id."{background-image:url(changeme.".$item->get('group', 'default').");background-position:0 -".$this->height[$item->get('group', 'default')]."px;width:".$width."px;height:".$item->get('height')."px;}";
into
$css .= "#pcdtr".$this->id."{background-image:url(changeme.".$item->get('group', 'default').");background-position:0 -".$newposheight."px;width:".$width."px;height:".$newheight."px;}";
after that i've got the result like this
hope it will help. it works on my problem. if you still got the problem try to add line-height at pcdtr styles.css
remember: use it at your own risk, because the problem may different. don't forget to make a backup first.