mirror of https://github.com/iSoron/uhabits.git
parent
a3bfc05068
commit
d96732b588
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
|
||||
*
|
||||
* This file is part of Loop Habit Tracker.
|
||||
*
|
||||
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package org.isoron.platform.gui
|
||||
|
||||
import kotlin.math.*
|
||||
|
||||
interface Image {
|
||||
val width: Int
|
||||
val height: Int
|
||||
|
||||
fun getPixel(x: Int, y: Int): Color
|
||||
fun setPixel(x: Int, y: Int, color: Color)
|
||||
|
||||
suspend fun export(path: String)
|
||||
|
||||
fun diff(other: Image) {
|
||||
if (width != other.width) error("Width must match")
|
||||
if (height != other.height) error("Height must match")
|
||||
|
||||
for (x in 0 until width) {
|
||||
for (y in 0 until height) {
|
||||
val p1 = getPixel(x, y)
|
||||
var l = 1.0
|
||||
for (dx in -2..2) {
|
||||
if (x + dx < 0 || x + dx >= width) continue
|
||||
for (dy in -2..2) {
|
||||
if (y + dy < 0 || y + dy >= height) continue
|
||||
val p2 = other.getPixel(x + dx, y + dy)
|
||||
l = min(l, abs(p1.luminosity - p2.luminosity))
|
||||
}
|
||||
}
|
||||
setPixel(x, y, Color(l, l, l, 1.0))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
val averageLuminosity: Double
|
||||
get() {
|
||||
var luminosity = 0.0
|
||||
for (x in 0 until width) {
|
||||
for (y in 0 until height) {
|
||||
luminosity += getPixel(x, y).luminosity
|
||||
}
|
||||
}
|
||||
return luminosity / (width * height)
|
||||
}
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
|
||||
*
|
||||
* This file is part of Loop Habit Tracker.
|
||||
*
|
||||
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package org.isoron.platform.gui
|
||||
|
||||
import org.khronos.webgl.*
|
||||
import org.w3c.dom.*
|
||||
import kotlin.browser.*
|
||||
import kotlin.math.*
|
||||
|
||||
class JsImage(val canvas: JsCanvas,
|
||||
val imageData: ImageData) : Image {
|
||||
|
||||
override val width: Int
|
||||
get() = imageData.width
|
||||
|
||||
override val height: Int
|
||||
get() = imageData.height
|
||||
|
||||
val pixels = imageData.unsafeCast<Uint16Array>()
|
||||
|
||||
init {
|
||||
console.log(width, height, imageData.data.length)
|
||||
}
|
||||
|
||||
override suspend fun export(path: String) {
|
||||
canvas.ctx.putImageData(imageData, 0.0, 0.0)
|
||||
val container = document.createElement("div")
|
||||
container.className = "export"
|
||||
val title = document.createElement("div")
|
||||
title.innerHTML = path
|
||||
document.body?.appendChild(container)
|
||||
container.appendChild(title)
|
||||
container.appendChild(canvas.element)
|
||||
}
|
||||
|
||||
override fun getPixel(x: Int, y: Int): Color {
|
||||
val offset = 4 * (y * width + x)
|
||||
return Color(imageData.data[offset + 0] / 255.0,
|
||||
imageData.data[offset + 1] / 255.0,
|
||||
imageData.data[offset + 2] / 255.0,
|
||||
imageData.data[offset + 3] / 255.0)
|
||||
}
|
||||
|
||||
override fun setPixel(x: Int, y: Int, color: Color) {
|
||||
val offset = 4 * (y * width + x)
|
||||
inline fun map(x: Double): Byte {
|
||||
return (x * 255).roundToInt().unsafeCast<Byte>()
|
||||
}
|
||||
imageData.data.set(offset + 0, map(color.red))
|
||||
imageData.data.set(offset + 1, map(color.green))
|
||||
imageData.data.set(offset + 2, map(color.blue))
|
||||
imageData.data.set(offset + 3, map(color.alpha))
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
|
||||
*
|
||||
* This file is part of Loop Habit Tracker.
|
||||
*
|
||||
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation, either version 3 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package org.isoron.platform.gui
|
||||
|
||||
import java.awt.image.*
|
||||
import java.io.*
|
||||
import javax.imageio.*
|
||||
|
||||
class JavaImage(val bufferedImage: BufferedImage) : Image {
|
||||
override fun setPixel(x: Int, y: Int, color: Color) {
|
||||
bufferedImage.setRGB(x, y, java.awt.Color(color.red.toFloat(),
|
||||
color.green.toFloat(),
|
||||
color.blue.toFloat()).rgb)
|
||||
}
|
||||
|
||||
override suspend fun export(path: String) {
|
||||
val file = File(path)
|
||||
file.parentFile.mkdirs()
|
||||
ImageIO.write(bufferedImage, "png", file)
|
||||
}
|
||||
|
||||
override val width: Int
|
||||
get() = bufferedImage.width
|
||||
|
||||
override val height: Int
|
||||
get() = bufferedImage.height
|
||||
|
||||
override fun getPixel(x: Int, y: Int): Color {
|
||||
return Color(bufferedImage.getRGB(x, y))
|
||||
}
|
||||
}
|
Loading…
Reference in new issue