0

NSPrintInfo has the following method to change the scale of the printed document. However it is only available starting in OSX 10.6

- (void)setScalingFactor:(CGFloat)scalingFactor

How can I scale my print on Leopard 10.5 ?

jscs
  • 63,694
  • 13
  • 151
  • 195
aneuryzm
  • 63,052
  • 100
  • 273
  • 488

1 Answers1

0

Here's a potentially useful web page (which also has some useful looking source code -- including scaling -- in the comments). Why not use it for your 10.5 case and use the proper NSPrintInfo stuff for the 10.6 & newer case?

Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215