pdf.jpegQualityNumber(default: 0.92)
Specifies the quality of the images within the exported file, from 0 to 1.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
    pdf: {
        fileName: "PropertyGrid.pdf",
        jpegQuality: 0.8
    },
    model: {
        foo: "bar",
        baz: 5
    }
});
</script>
In this article