Compare commits
3 Commits
a799043299
...
3e934fddd7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e934fddd7 | ||
|
|
bdd9fc12df | ||
|
|
60c1de5e65 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -41,6 +41,9 @@
|
||||
#vscode
|
||||
.settings
|
||||
|
||||
#testing cache
|
||||
.testcache
|
||||
|
||||
#docs
|
||||
/docs-dist/**
|
||||
/docs/DoxygenWarningLog.txt
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user