Jump to content

help


Akishi
 Share

Recommended Posts

57 minutes ago, Akishi said:

Can Anyone Help me To change this logo or Rename it?

image.png.c7a064cbfaf4b95674d180cdafe2e338.pngან

first find the correct void function where the logo is being drawn, if the logo is compressed you should find unsigned char, as the same name 

example:

inline unsigned char background_data[size] = {
        //there you should have your converted image bytes
};
 
auto* background_texture = LPDIRECT3DTEXTURE9( );
D3DXCreateTextureFromFileInMemory( gui::d3ddevice, background_data, sizeof background_data, &background_texture );
 
ImGui::Image( reinterpret_cast<void*>( background_texture ), ImVec2( x, y ) );

simply just convert your image into bytes and replace that with the current data

 

 

more examples and tutorials:

https://www.unknowncheats.me/forum/general-programming-and-reversing/425768-imgui-render-compressed-image.html

https://www.unknowncheats.me/wiki/Team_Fortress_2:Embedding_and_rendering_custom_textures

https://www.unknowncheats.me/forum/2954997-post3.html

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...