qtresourcesrcc

Opening/Editing Qt Resource File (.rcc)


I want to translate a program; but its language files (.qm) are in a .rcc file.

The program is not mine, so I haven't got any .qrc file.

Before asking this question, I have searched this site about this issue; but I don't attain anything.

Is there any way to extract/decompile it?


Solution

  • You can take my tool RccExtended - it based on the official Qt resource compiler with additional function to decompile binary resources.

    Usage example:

    cd \Path\To\MyQtResources\
    rcc --reverse
    

    Decompiler will unpack all .rcc files in the current directory, generate .qrc files and make.bat file to compile resources back to the binary format.