Dioddi Posted November 16, 2023 Share Posted November 16, 2023 (edited) Hello. I am trying to open the .dds file of the game Gardenscapes (Playrix). I tried removing the first 16 bytes to make the signature match the DDS, but it doesn't work red_letter_background.dds tv_noise.dds Edited November 16, 2023 by Dioddi Link to comment Share on other sites More sharing options...
ikskoks Posted November 16, 2023 Share Posted November 16, 2023 Data seems to be compressed with unknown algorithm. Link to comment Share on other sites More sharing options...
Engineer LinkOFF Posted November 17, 2023 Engineer Share Posted November 17, 2023 (edited) Zstandard compression. 010 Editor Template: typedef struct{ char BLKSign[4]; uint32 Unknown0x4; uint32 Unknown0x8; uint32 UncompressedSize; char DDSSign[4]; uint32 DDSHeaderSize; uint16 DDSFlags; uint16 DDSHeight; uint16 DDSWidth; uint16 Unknown1; uint32 DataStartOffset; uint32 FileSize; } HEADER; HEADER hdr; char ZstdCompressedBlock[hdr.FileSize - hdr.DataStartOffset]; There is weird DDS inside. Edited November 17, 2023 by LinkOFF 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now