mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 05:53:27 -07:00
Fixed OS output, as it didn't display Windows 10.
Fixed version string. Improved OCR and QR code a bit.
This commit is contained in:
parent
bb11899d71
commit
d8f5259fe0
11 changed files with 327 additions and 132 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace GreenshotPlugin.Interfaces.Ocr
|
||||
|
@ -8,6 +9,11 @@ namespace GreenshotPlugin.Interfaces.Ocr
|
|||
/// </summary>
|
||||
public class OcrInformation
|
||||
{
|
||||
/// <summary>
|
||||
/// Check if there is any content
|
||||
/// </summary>
|
||||
public bool HasContent => Lines.Any();
|
||||
|
||||
/// <summary>
|
||||
/// The complete text
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue