Initial commit

This commit is contained in:
Aryan 2026-02-24 17:37:40 +05:30
commit 6072b2ba29
844 changed files with 220532 additions and 0 deletions

View file

@ -0,0 +1,16 @@
package com.aryan.reader.paginatedreader
object Woff2Converter {
init {
System.loadLibrary("native-lib")
}
/**
* Converts a WOFF2 font file into a TTF font file.
*
* @param woff2Data The raw byte array of the WOFF2 file.
* @return A byte array of the converted TTF file, or null if conversion fails.
*/
external fun convertWoff2ToTtf(woff2Data: ByteArray): ByteArray?
}