RowdyGamer
Apprentice Poster
Posts: 19
Joined: Nov 2020
Reputation: 0
|
Broken Images
Is there any way I can see the broken images from 10/11 years ago especially from imagechunk? Any particular script or something?
|
|
16-12-2024 13:55 |
|
RowdyGamer
Apprentice Poster
Posts: 19
Joined: Nov 2020
Reputation: 0
|
RE: Broken Images
(17-12-2024 15:35 )Count Spankula Wrote: The answer is basically yes, it is possible for you to see the broken images from Imagechunk. However, since the images have been moved to Lic Me, you have to fix the img sources to point to the current images rather than the Imagechunk originals.
Can you help me with that?
I have this script:
j { var mypics=document.images; var mypictext=""; var mypictextdat=""; var mytextsplit = []; for (i=0; i<mypics.length; i++) { mytextsplit.length=0; mypictext=mypics[i].src; mypictextdat=mypics[i].getAttribute("data-original"); if (mypictext.indexOf("transp.gif") >= 0 && mypictextdat.indexOf("imagechunk") >= 0) mypictext=mypictextdat; if (mypictext.indexOf("imagechunk") >= 0 || mypictext.indexOf("lic.me/t/imgchunk_") >=0) { mytextsplit = mypictext.split("/"); mypictext=mytextsplit[mytextsplit.length-1]; if (mypictext.indexOf("index.php") >= 0) { mytextsplit.length=0; mytextsplit = mypictext.split("="); mypictext=mytextsplit[mytextsplit.length-1]; } else if (mypictext.indexOf("imgchunk_") >= 0) { mypictext = mypictext.replace("imgchunk_", ""); } mypictext = mypictext.replace("_thumb.", "."); mypics[i].src=("http://lic.me/uploaded_images/"+ mypictext.charAt(0) +"/"+ mypictext.charAt(1) +"/"+ mypictext); } }};void(0);
|
|
Yesterday 01:30 |
|
wrightbadger
Apprentice Badger
Posts: 134
Joined: Aug 2018
Reputation: 7
|
RE: Broken Images
looking at lic.me i think their archive of imagechunk images has degraded to being almost useless.
unless there's a problem with the site it seems like almost all of the full size images are gone with only cropped thumbnails remaining.
if you search lic.me for some of your your example danica images
https://lic.me/search/?s=cable_106_20100501_2202
you will get thumbnails but clicking on them goes to pages without a full size image
i did make an extra bookmarklet to get these thumbnails for broken lic.me images but they're a poor substitute and i really don't know if it's worth posting it
- imagechunk image fix bookmarklet -
|
|
Yesterday 23:28 |
|