0

我已经使用OCRiPhone 实现了名片阅读器应用程序

Tesseract 库 是一个开源库。api

主要议程是何时从名片中识别文本。我需要将姓名和电子邮件地址以及电话号码传递给相应的字段。

使用它们的表达格式来处理电子邮件地址和电话号码。

但如果是NAME 其他一些具有相同格式的文本,所以我们可以使用字体大小来选择它

How to get font sizes of recognized text to Recognize Name using font size on the Business Card form the Recognized text using OCR...?

4

1 回答 1

4

试试这个 -

UIFont *font = totalLabel.font;
CGFloat maxHeight = font.lineHeight * totalLabel.numberOfLines;
CGFloat maxWidth = totalLabel.frame.size.width;
CGSize size = [totalLabel.text sizeWithFont:font constrainedToSize:(CGSize){maxWidth, maxHeight} lineBreakMode:totalLabel.lineBreakMode];
于 2012-10-09T09:40:43.297 回答