Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.
Zero Tolerance for Disrespect

Neko Atsume (Kamen Rider Atsume) .bin

Featured Replies

Solved by NeoGT404

File Format: bd.bin (Big-Endian)

Here is the structure for anyone who needs it:

File structure:

4 bytes - Total Image Data Size

2 bytes - Image Count

6 bytes - Padding

4 bytes - Image 1 Size

4 bytes - Image 2 Size

2 bytes - Unknown

(Raw PNG 1 data)

(Raw PNG 2 data)

Note: The PNG files are not compressed or encrypted. You can just grab the hex data at the bottom of the file based on the sizes defined in the header, copy the raw bytes, and save them directly as .png. They will open perfectly.

IMG_20260406_214336.png.52eb8bbce674045e1a2ef5d320112ebe.png

Edited by AngelYan

  • Localization
  • Solution

Here's the actual file structure:
 

#pragma endian big

struct e {
    u32 off;
    u32 size;
    char data_start[4] @ (parent.bp+off);
    char data_end[4] @ (parent.bp+off+size-4);
};

struct a {
    u32 data_size;
    u16 c;
    u64 bp = 6 + c*8;
    e e[c];
};

a a @ 0;

and I've also added support for it in my extractor: https://github.com/smiRaphi/UniPyX (https://github.com/smiRaphi/UniPyX/commit/b9b75292ff49a0b8d33d5371081fe1545762653c)

  • Author
2 hours ago, NeoGT404 said:

Here's the actual file structure:
 

#pragma endian big

struct e {
    u32 off;
    u32 size;
    char data_start[4] @ (parent.bp+off);
    char data_end[4] @ (parent.bp+off+size-4);
};

struct a {
    u32 data_size;
    u16 c;
    u64 bp = 6 + c*8;
    e e[c];
};

a a @ 0;

and I've also added support for it in my extractor: https://github.com/smiRaphi/UniPyX (https://github.com/smiRaphi/UniPyX/commit/b9b75292ff49a0b8d33d5371081fe1545762653c)

this is cool! but I really don't know how to use python (using 3.11.1)

  • Supporter

Testapp, checked one bin only, so don't blame me, just in case.

Apart from 28 valid pngs bx.bin contains 58 "empty" png blocks (no pixel data), example:

pngempty.png.bc11564d94d693f26a389f08357f23b4.png

CollectPNGs.zip

Edited by shak-otay
replaced debug version

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.