ITGReader resolve properly

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
sigonasr2 2022-08-20 14:08:42 -05:00
parent a553334224
commit 16995f7ec1
18 changed files with 4 additions and 0 deletions

Binary file not shown.

BIN
bin/readers/DDRReader.class Normal file

Binary file not shown.

BIN
bin/readers/ITGReader.class Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
bin/sigPlace.class Normal file

Binary file not shown.

BIN
bin/sigServer.class Normal file

Binary file not shown.

View File

@ -172,6 +172,8 @@ public class ITGReader extends Reader{
List<Glyph> glyphs = Glyph.split(cutImg);
if (glyphs.size()>=3) {
glyphs.remove(glyphs.size()-3);
} else {
return "";
}
String res = f.convertGlyphs(glyphs);
return res.substring(0,res.length()-2)+"."+res.substring(res.length()-2,res.length());
@ -182,6 +184,8 @@ public class ITGReader extends Reader{
List<Glyph> glyphs = Glyph.split(cutImg);
if (glyphs.size()>=3) {
glyphs.remove(glyphs.size()-3);
} else {
return "";
}
String res = f.convertGlyphs(glyphs);
return res.substring(0,res.length()-2)+"."+res.substring(res.length()-2,res.length());

Binary file not shown.