本页内容
测量周长与面积
多边形测量注释可用于测量用户选择的多边形区域的周长与面积。
以下是创建多边形测量注释的示例代码:
swift
// 获取需要创建便签的页面对象
if let page = document?.page(at: 0) {
// 创建多边形注释
var anotation = CPDFPolygonAnnotation(document: document)
// 设置多边形的的顶点
var pointsArray: [NSValue] = []
let point1 = CGPoint(x: 100, y: 100)
pointsArray.append(NSValue(cgPoint: point1))
let point2 = CGPoint(x: 100, y: 200)
pointsArray.append(NSValue(cgPoint: point2))
let point3 = CGPoint(x: 200, y: 200)
pointsArray.append(NSValue(cgPoint: point3))
anotation?.setSavePoints(pointsArray)
// 设置测量属性
var measureInfo = CPDFAreaMeasureInfo()
// (对于可以测量面积的封闭图形)设置将图形面积和周长显示在注释外观中。
measureInfo.captionType = [.length, .area]
//设置MeasureInfo:相关信息需要在将其加在页面后才会有效
anotation.measureInfo = measureInfo;
// 更新注释外观使其显示在文档上
page.addAnnotation(anotation!)
}
objective-c
// 获取需要创建便签的页面对象
CPDFPage *page = [document pageAtIndex:0];
// 创建多边形注释
CPDFPolygonAnnotation *anotation = [[CPDFPolygonAnnotation alloc] initWithDocument:document];
// 设置多边形的的顶点
NSMutableArray<NSValue *> *pointsArray = [NSMutableArray array];
CGPoint point1 = CGPointMake(100, 100);
[pointsArray addObject:[NSValue valueWithCGPoint:point1]];
CGPoint point2 = CGPointMake(100, 200);
[pointsArray addObject:[NSValue valueWithCGPoint:point2]];
CGPoint point3 = CGPointMake(200, 200);
[pointsArray addObject:[NSValue valueWithCGPoint:point3]];
[anotation setSavePoints:savePoints];
// 设置测量属性
CPDFAreaMeasureInfo *measureInfo = [[CPDFAreaMeasureInfo alloc] init];
// (对于可以测量面积的封闭图形)设置将图形面积和周长显示在注释外观中。
measureInfo.captionType = CPDFCaptionTypeLength | CPDFCaptionTypeArea;
//设置MeasureInfo:相关信息需要在将其加在页面后才会有效
[anotation setMeasureInfo:measureInfo];
// 更新注释外观使其显示在文档上
[page addAnnotation:anotation];