All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blr19c.falowp.bot.system.expand.Base64.kt Maven / Gradle / Ivy

The newest version!
package com.blr19c.falowp.bot.system.expand

import java.awt.image.BufferedImage
import java.io.ByteArrayInputStream
import java.util.*
import javax.imageio.ImageIO

fun ByteArray.encodeToBase64String(): String = Base64.getEncoder().encodeToString(this)

fun String.decodeFromBase64String(): ByteArray = Base64.getDecoder().decode(this)

fun String.base64ToBufferedImage(): BufferedImage = ImageIO.read(ByteArrayInputStream(this.decodeFromBase64String()))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy