-
-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiling with JDK11 #21
Comments
Not sure why I never replied, but your suggestion was applied: Will be included in the next release. |
Hi, this.sb.append(Base64.getEncoder().encode(getPNGBytes(img))); should rather be this.sb.append(Base64.getEncoder().encodeToString(getPNGBytes(img))); Otherwise, I find the default String representation of the byte array is written within the image, i.e. something like |
You are correct. Fixing this now. |
When compiling the library jfreesvg with JDK11 I get the following error:
Others seem to have similar issues, e.g. tomdesair/tus-java-server#14 (just found by searching). They say:
Not sure it is the same issue though. Any ideas?
The text was updated successfully, but these errors were encountered: