Since the upgrade to Chrome 47 printing web pages gives a problem. We have a background image that is repeated on each printed page. Since Chrome 47 this image is in low resolution/bad quality. If the image is not repeated the quality is fine.
#bodyContent {
background-image:url('/images/Letter.png');
background-repeat: no-repeat;
}
gives good result: sharp image on printed page.
#bodyContent {
background-image:url('/images/Letter.png');
background-repeat: repeat;
}
gives bad result: blurred, low-res, bad quality image.
Does anyone have an idea how to solve this problem?