excel - Convert linked images to embedded images -


i have excel file many images inside.

actually, excel files made html code converted excel file , images linked respective image. ( reason made file excel because there 700+ images , cant make manually 1. takes time finish)

here excel's html code

<!doctype html> <html> <head> </head> <body> <table>     <thead>                 <tr>          <th>no</th>          <th>image</th>          <th>title</th>       </tr>    </thead>    <tbody>         <tr>          <td >1</td>          <td><img src="56.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >2</td>          <td><img src="57.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >3</td>          <td><img src="58.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >4</td>          <td><img src="59.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >5</td>          <td><img src="60.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >6</td>          <td><img src="61.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >7</td>          <td><img src="62.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >8</td>          <td><img src="63.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >9</td>          <td><img src="64.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >10</td>          <td><img src="65.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >11</td>          <td><img src="66.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >12</td>          <td><img src="67.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >13</td>          <td><img src="68.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >14</td>          <td><img src="69.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >15</td>          <td><img src="70.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >16</td>          <td><img src="71.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >17</td>          <td><img src="72.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >18</td>          <td><img src="73.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >19</td>          <td><img src="74.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >20</td>          <td><img src="75.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >21</td>          <td><img src="76.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >22</td>          <td><img src="77.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >23</td>          <td><img src="78.jpg" width="200px"/></td>          <td></td>     </tr>         <tr>          <td >24</td>          <td><img src="79.jpg" width="200px"/></td>          <td></td>     </tr>        </tbody> </table> </body> </html> 

the problem is, when save , send excel file other's pc, images blank. here's screenshot

enter image description here

i tried google problem still couldn't find solution yet.

any method convert images embedded images?

thank you


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -