What is the CoreGraphics equivalent of UIKit's contentScaleFactor?
I am creating a PDF using the UKit PDF creation functions, which allow rendering to a PDF context. I have a requirement, however, to DEGRADE the quality of the generated PDF. We have achieved this already (rendering to a UIView) using UIKit's contentScaleFactor property, which is the factor of conversion between graphics space and pixel space. However, I need to apply this magic & voodoo to a CGContextRef, without a UIView, but I don't know what I should do.
Any other suggestions as to how to degrade the PDF quality would be much appreciated.
Thanks
Edit: My input is a PDF document. I am re-creating a PDF from another PDF using CoreGraphics, but the process CAN be slow, depending on the graphical intensity of some PDF pages.