When I load the file using type = "file" 
it selected any extension from the folder. 
then my question is 'how this file formed to send it to other  server or page?'
 <form action="/action_page.php">
      <input type="file" name="pic" accept="image/*">
      <input type="submit">
    </form>
let say I selected the file    image.jpg. 
how this image.jpg transformed? 
and where they stored? 
and how they send this file?
I'm asking this question because 
Im using webview on android 
when I access to the android gallery file it retuned some bitmap format.
I want to know how to send this bitmap format on 
 <input type="file" name="pic" accept="image/*">
