Unverified Commit 5ffc4b9f authored by Marius Göcke's avatar Marius Göcke
Browse files

fix

parent 0552f1db
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
    <metadata minClientVersion="2.12">
        <id>SimpleOCR</id>
        <id>SimpleOCRLibrary</id>
        <version>1.1.0</version>
        <title>SimpleOCR</title>
        <authors>Marius Göcke</authors>
        <owners>Marius Göcke</owners>
        <requireLicenseAcceptance>true</requireLicenseAcceptance>
        <copyright>Copyright © 2025 by Marius Göcke</copyright>
        <description>SimpleOCR is a simple OCR-library.</description>
        <description>SimpleOCRLibrary is a simple OCR-library.</description>
        <summary>SimpleOCRLibrary is a simple OCR-library.</summary>
        <license type="file">lib/net8/SimpleOCRLibrary.License.txt</license>
        <dependencies>
+1 −1
Original line number Diff line number Diff line
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="96" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h61v20H0z"/><path fill="#0374B5" d="M61 0h35v20H61z"/><path fill="url(#b)" d="M0 0h96v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"> <text x="315" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">coverage</text><text x="315" y="140" transform="scale(.1)" textLength="510">coverage</text><text x="775" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">70%</text><text x="775" y="140" transform="scale(.1)" textLength="250">70%</text></g></svg>
 No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="96" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h61v20H0z"/><path fill="#0374B5" d="M61 0h35v20H61z"/><path fill="url(#b)" d="M0 0h96v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"> <text x="315" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">coverage</text><text x="315" y="140" transform="scale(.1)" textLength="510">coverage</text><text x="775" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="250">78%</text><text x="775" y="140" transform="scale(.1)" textLength="250">78%</text></g></svg>
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
# SimpleOCRLibrary

SimpleOCRLibrary is a simple OCR-library.
See https://projects.aniondev.de/PublicProjects/Common/SimpleOCR for more information.
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ namespace SimpleOCR.Library.Core
        public string GetOCRContent(byte[] fileContent, ISet<string> languages, string fileType);
        /// <returns>Returns the file converted to fileType=jpg.</returns>
        public byte[] ToPicture(byte[] fileContent, string fileType);
        /// <returns>Returns a list of language-identifier in ISO-639-3.</returns>
        public ISet<string> GetSupportedLanguages();
    }
}