1
我正在使用CATiledLayer進行數據可視化。默認情況下,drawLayer函數獲取轉置和縮放的上下文,這使得繪圖代碼可以與縮放級別和請求的圖塊無關。
但是,我想使用縮放功能來改變數據的水平範圍,而無需實際縮放。如何在放大CATiledLayer時繪製未轉換的上下文?
到目前爲止,我得到這個代碼:
(void)drawLayer:(CALayer*)layer inContext:(CGContextRef)context {
/* retrieve the transformation matrix from the context. */
CGAffineTransform contextTrans = CGContextGetCTM(context);
/* Scale the context back, so all items will still have the same size */
CGContextScaleCTM(context, 1.0/contextTrans.a, 1.0/contextTrans.d);
<.. loop through all datapoints ..> {
/* Transpose the point-centers to the new zoomed context */
xCoord = xCoord * contextTrans.a;
yCoord = yCoord * contextTrans.d;
}
<.. drawing code ..>
}
這個方法奏效,但缺點是,在放大時的元素會變模糊(只有1/zoomfactor像素渲染每個屏幕上的像素)。
任何方法來防止這種模糊發生?
或者,有什麼辦法可以繪製到非轉換的上下文,而不是轉置的上下文?