Compare commits

...

3 Commits

Author SHA1 Message Date
austin
3e934fddd7 testing fix 2024-08-01 17:35:05 -04:00
austin
bdd9fc12df remove image 2024-08-01 17:31:28 -04:00
austin
60c1de5e65 testing fix 2024-08-01 17:31:09 -04:00
3 changed files with 8 additions and 3 deletions

3
.gitignore vendored
View File

@ -41,6 +41,9 @@
#vscode
.settings
#testing cache
.testcache
#docs
/docs-dist/**
/docs/DoxygenWarningLog.txt

View File

@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file
#Wed Jul 31 20:20:41 EDT 2024
buildNumber=193
#Thu Aug 01 17:34:47 EDT 2024
buildNumber=196

View File

@ -140,7 +140,9 @@ public class FontUtils {
// image = operation.filter(image, null);
try {
ImageIO.write(image, "png", Files.newOutputStream(new File("C:/users/satellite/Pictures/testimg.png").toPath()));
File imgFile = new File("./.testcache/testimg.png");
imgFile.mkdirs();
ImageIO.write(image, "png", Files.newOutputStream(imgFile.toPath()));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();