Как выделить текст при использовании PSPDFKIT (iOS) с целью C
Я использую PSPDFKit для редактирования PDF, я не могу выделить текст в PDF, пожалуйста, помогите узнать, как выделить текст с помощью PSPDFkit в Objective C.
1 ответ
Вы можете выделить текст программно в PSPDFKit для iOS, например так:
PSPDFDocument *document = [PSCAssetLoader documentWithName:PSCAssetNameAnnualReport];
document.annotationSaveMode = PSPDFAnnotationSaveModeDisabled; // don't confuse other examples.
// Let's create a highlight for all occurrences of "bow" on the first 10 pages, in Orange.
NSUInteger annotationCounter = 0;
for (NSUInteger pageIndex = 0; pageIndex < 10; pageIndex++) {
PSPDFTextParser *textParser = [document textParserForPageAtIndex:pageIndex];
for (PSPDFWord *word in textParser.words) {
if ([word.stringValue isEqualToString:@"bow"]) {
PSPDFHighlightAnnotation *annotation = [PSPDFHighlightAnnotation textOverlayAnnotationWithGlyphs:[textParser glyphsInRange:word.range] pageRotation:[document pageInfoForPageAtIndex:pageIndex].rotation];
annotation.color = UIColor.orangeColor;
annotation.contents = [NSString stringWithFormat:@"This is an automatically created highlight #%tu", annotationCounter];
annotation.pageIndex = pageIndex;
[document addAnnotations:@[annotation] options:nil];
annotationCounter++;
}
}
}
Для более подробной информации, посмотрите на PSCAddHighlightAnnotationProgrammaticallyExample
из нашего каталога пример проекта.
В будущем обратитесь по адресу pspdfkit.com/support/request, и наша служба поддержки поможет вам в этом.