We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Executing the following cell:
import javax.imageio.ImageIO import java.io.File val ioImage = ImageIO.read(File("some_image.jpg"))
launches new process IkotlinKt that doesn't end.
IkotlinKt
The text was updated successfully, but these errors were encountered:
Could you try to close the file after read? I mean
val ioImage = File("some_image.jpg").use{ ImageIO.read(it) }
I do not know the library, but it is possible, that image should be manually released as well...
Sorry, something went wrong.
File and BufferedImage don't support Closeable interface.
File
BufferedImage
Closeable
But this is really a problem of implementation ImageIO.
No branches or pull requests
Executing the following cell:
launches new process
IkotlinKt
that doesn't end.The text was updated successfully, but these errors were encountered: