Skip to content

Instantly share code, notes, and snippets.

View kystreich's full-sized avatar
😵‍💫
probably debugging

Kyle Oestreich kystreich

😵‍💫
probably debugging
  • Rust River Design
  • Cleveland, Ohio
  • 18:15 (UTC -04:00)
View GitHub Profile
@kystreich
kystreich / decompress.go
Created December 9, 2025 18:47
Decompress LBP Tex File
/*
A simple script to show how to decompress LBP TEX files used for images/icons.
This assumes that the file will be DDS, which may not always be true. Some files have been known to use JPEG/PNG
*/
package main
import (
"bytes"
"compress/zlib"
"encoding/binary"