I have the following HTML that you display a portait image cropped circularly with a grey border
<html>
<head>
<style type="text/css">
img {
width: 200px;
height: 200px;
border: solid 5px grey;
border-radius: 50%;
}
</style>
</head>
<body>
<img src="504.png">
</body>
</html>
This works fine with HTML and another PDF converter (PDFreactor) - however PrinceXML 9
seems to ignore the border-radius and just generated a quadradic border around the image.
Bug or feature?
<html>
<head>
<style type="text/css">
img {
width: 200px;
height: 200px;
border: solid 5px grey;
border-radius: 50%;
}
</style>
</head>
<body>
<img src="504.png">
</body>
</html>
This works fine with HTML and another PDF converter (PDFreactor) - however PrinceXML 9
seems to ignore the border-radius and just generated a quadradic border around the image.
Bug or feature?