ITGReader resolve properly

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
sigonasr2 2 years ago
parent a553334224
commit 16995f7ec1
  1. BIN
      bin/exceptions/FailedResponseException.class
  2. BIN
      bin/readers/DDRReader.class
  3. BIN
      bin/readers/ITGReader.class
  4. BIN
      bin/readers/LoveLiveReader.class
  5. BIN
      bin/readers/PopnReader.class
  6. BIN
      bin/readers/SoundVoltexReader.class
  7. BIN
      bin/readers/TestReader.class
  8. BIN
      bin/readers/fonts/Font.class
  9. BIN
      bin/readers/fonts/Glyph.class
  10. BIN
      bin/requests/GETRequest$1.class
  11. BIN
      bin/requests/GETRequest.class
  12. BIN
      bin/requests/MultipartUtility.class
  13. BIN
      bin/requests/POSTRequest$1.class
  14. BIN
      bin/requests/POSTRequest.class
  15. BIN
      bin/sigPlace.class
  16. BIN
      bin/sigServer.class
  17. 4
      readers/ITGReader.java
  18. BIN
      sigPlace.jar

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.

Binary file not shown.

@ -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.
Loading…
Cancel
Save