Image Scaling

How would you make the image in the image view not scale at all, scale proportionally, or scale axes independently?

You would use setImageScaling_() with a 0,1 or 2 between the parentheses.
0= NSScaleProportionally
1= NSScaleToFit
2= NSScaleNone

I don’t know if you can scale the 2 axes independently in a determinant way - scale to fit will scale both axes to fill up the whole frame.