Fix for OPENRNDR 0.3.38-rc.4 for orx-runway

This commit is contained in:
Edwin Jakobs
2020-01-17 15:55:08 +01:00
parent 64d377e795
commit 038be9b694

View File

@@ -2,10 +2,9 @@ package org.openrndr.extra.runway
import com.google.gson.Gson import com.google.gson.Gson
import org.openrndr.draw.ColorBuffer import org.openrndr.draw.ColorBuffer
import org.openrndr.draw.FileFormat import org.openrndr.draw.ImageFileFormat
import java.io.ByteArrayInputStream import java.io.ByteArrayInputStream
import java.io.File import java.io.File
import java.io.IOException
import java.net.HttpURLConnection import java.net.HttpURLConnection
import java.net.SocketTimeoutException import java.net.SocketTimeoutException
import java.net.URL import java.net.URL
@@ -15,7 +14,7 @@ import java.util.*
/** /**
* Construct a base64 representation of an encoded image * Construct a base64 representation of an encoded image
*/ */
fun ColorBuffer.toData(format: FileFormat = FileFormat.JPG): String { fun ColorBuffer.toData(format: ImageFileFormat = ImageFileFormat.JPG): String {
val tempFile = File.createTempFile("orx-runway", null) val tempFile = File.createTempFile("orx-runway", null)
saveToFile(tempFile, format, async = false) saveToFile(tempFile, format, async = false)
val ref = File(tempFile.absolutePath) val ref = File(tempFile.absolutePath)