Coder Social home page Coder Social logo

Comments (1)

rr- avatar rr- commented on June 27, 2024

I'm not sure what you mean, but from looking at the picture, I guess you're trying to decode only one image rather than both. If you extract both of the images separately, they'll decode just fine.

If you however want arc_unpacker to merge base and face automatically, I'm afraid it isn't possible. Unfortunately G00 images do not contain information about cross-file references so it doesn't know which image uses which. Making hardcoded guesses about file references is only going to be harmful in the future.

Because there's only a handful of such images, I believe the best course of action would be to just merge the them manually in a graphic editing program such as pinta or photoshop. You can also use bash and imagemagick like this:

./arc_unpacker ~/path/to/g00/*{base,face}*.g00

for x in *base*.png; do
    y=${x/base/face}
    z=${x/base/merged}
   convert -composite $x $y $z
done

from arc_unpacker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.