jackhammer
03-04-2008, 12:24 AM
I have an html ebook that I want to extract the images from.
I havent figured out how to do that.. I have loaded the book into a few diffrent html editors and cant seem to see a way to get the image out of the html file.
I need to find a way to explode the html file, anyone know how to do this ?
thx..
Ortep
03-04-2008, 01:54 AM
I have an html ebook that I want to extract the images from.
I havent figured out how to do that.. I have loaded the book into a few diffrent html editors and cant seem to see a way to get the image out of the html file.
I need to find a way to explode the html file, anyone know how to do this ?
thx..
Try the following:
Simply open the HTML file by double clicking it.
Go to the picture
Right click it and select "save picture as"
Sometimes that does not work, but then you can doe a screen grab
jbenny
03-04-2008, 02:09 AM
From your description, I am assuming that the ebook in question is contained in a single file? If so, what are you using to read it? It may just be an archive file of some type (zip, rar, arc, etc.) that you can explode with common software.
If you are viewing the ebook in a web browser, then Ortep's suggestion will certainly work.
jackhammer
03-04-2008, 03:04 AM
Try the following:
Simply open the HTML file by double clicking it.
Go to the picture
Right click it and select "save picture as"
Sometimes that does not work, but then you can doe a screen grab
Boy I feel stupid, That worked like a charm:smack:
:thanks::thanks::thanks:
DMcCunney
03-04-2008, 07:10 AM
Boy I feel stupid, That worked like a charm:smack:
:thanks::thanks::thanks:If the HTML book is a locally stored file, the images in the book are likely to be in a subdirectory called Images beneath the directory where the book is stored. When the book is displayed, HTML statements will point to the image files to be rendered by your browser. The images won't be embedded in the text. That's not how HTML works.
______
Dennis
jackhammer
03-05-2008, 02:24 PM
If the HTML book is a locally stored file, the images in the book are likely to be in a subdirectory called Images beneath the directory where the book is stored. When the book is displayed, HTML statements will point to the image files to be rendered by your browser. The images won't be embedded in the text. That's not how HTML works.
______
Dennis
It is a single html file on my computer there are no sub directory's, and it's not in a zip or anything like that. I have seen html projects like how you describe, an index file,css sheet various other files and the pictures all out and seperate in a folder. This file that I am working on is just a single file. wierd i know but I was able to save the picture out of it for a book cover so all is good.
Ortep
03-05-2008, 02:32 PM
It is a single html file on my computer there are no sub directory's, and it's not in a zip or anything like that. I have seen html projects like how you describe, an index file,css sheet various other files and the pictures all out and seperate in a folder. This file that I am working on is just a single file. wierd i know but I was able to save the picture out of it for a book cover so all is good.
Do you have an internet connection active? Then it is possible that you load the pictures of the net. There should be links in the file pointing to the pictures. Here you can see were they are. Right click on the pictures ans select 'properties'
Jellby
03-06-2008, 03:41 AM
I think it's possible to have the image data embedded in the html file, maybe that's what's happening.