Extract image from .apk file

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Extract image from .apk file

    Hi,

    i want a php script which can fetch image priview from an android app ( .apk ) file..

    I tried go0gling but not satisfactry result found.

    I think it is immposibble, if it is not, any one here which can make this code?

    #2
    re

    just download the apk file u want image from rename it to .zip extract then find your image..
    too dam easy lol









    Dont Ask Me Dumb Questions.Or you'l get a Dumb Answer..
    Want A Profesional Logo or Theme For Your wap site Pm Me.If I Have The Time Ill Make It For Free

    Comment


      #3
      Originally posted by ozziemale31 View Post
      just download the apk file u want image from rename it to .zip extract then find your image..
      too dam easy lol
      Any script like ffmpeg???

      Comment


        #4
        Images is located in app's res/drawable-density-of-device
        example
        Code:
        res/drawable-hdpi
        now its up to u how u are going to do
        or else
        try to parse AndroidMainfest.xml (which is binary xml so you will need to convert it to human readable)
        you will find app logo in element
        <application> with attribute android:icon="@drawable/ic_launcher"
        like
        Code:
        <application android:configChanges="keyboardHidden|orientation" android:icon="@drawable/ic_launcher" android:label="@string/application_name">
        <!-- rest of stuff like activity , intends or services -->
        </application>

        Comment


          #5
          re

          not sure i know it works for phone aps any types realy not sure on exe. as i name my keygens to jpgs so my antivirus doesnt go mental and delete them









          Dont Ask Me Dumb Questions.Or you'l get a Dumb Answer..
          Want A Profesional Logo or Theme For Your wap site Pm Me.If I Have The Time Ill Make It For Free

          Comment

          Working...
          X