0

我无法在 CorePlot 中找到任何关于可拉伸图像的示例或任何其他问题。我正在尝试在我的图表中使用注释,其图像必须是可拉伸的(图像的角必须保持不变)。

我设置了fill注释,fillWithImage:我认为我在那个地方是对的,但是图像完全调整了自身的大小,同时也拉伸了角落。

我尝试了所有我知道或见过UIImage的组合。CPTImage但无济于事。

一个例子是:

 UIImage *annotationImage = [[UIImage imageNamed:@"image.png"] stretchableImageWithLeftCapWidth:13 topCapHeight:12];
 CPTFill *annotationFill = [CPTFill fillWithImage:[CPTImage imageWithCGImage:annotationImage.CGImage]];
 borderLayer.fill = annotationFill;

请告诉我这是可能的,我错过了一些东西。

提前致谢

4

1 回答 1

0

当前版本的 Core Plot 不支持此功能。请在 Core Plot问题跟踪器上打开增强请求。

于 2013-04-16T01:25:38.393 回答