ApocalypticArt
DUE TO ONGOING TECHNICAL ISSUES OUT OF OUR CONTROL WE HAVE MOVED TO: [email protected]
This instance is set to read-only now.
ApocalypticArt - where the remnants of humanity's past meet the promise of an uncertain future. This is the place for apocalyptic wastelands, remains of once-thriving metropolises and forgotten relics of a bygone era.
Always credit the original artist when creating a new post!
A good title format that's used on [email protected] is: Image title by Artists Name, so let's use that here, too.
Provide a link to the image source or the artists' gallery / social media account(s).
Posting your own work is allowed and encouraged, but please let the community breathe and don't spam.
Don't post AI-generated art, since the legal situation regarding ownership is very shady.
–
All artworks are copyright of the artists named in the posts. Artists gallery links may contain NSFW works.
–
Header image: Old world by Jerome Comentale
Logo: Custom-made by /u/lichtmetzger
Thank you! That site is really helpful.
Here are another 4, just substitute XXXX
with the image URL:
- Google: https://lens.google.com/uploadbyurl?url=XXXX
- Bing: https://www.bing.com/images/searchbyimage?cbir=sbi&imgurl=XXXX
- TinEye: https://www.tineye.com/search?url=XXXX
- Yandex: https://yandex.com/images/search?rpt=imageview&url=XXXX
I also have a userscript that I trigger with a keyworded shortcut on Firefox, I just "Open image in new tab", type rev
and the 5 reverse searchs open at once :).
EDIT: Here it is the userscript. It's a bit more complex that what I remembered because it also handles pages with more than 1 images: adding a number to any image and asking you to choose.. but I think that doesn't work very well.
javascript:(function() {var url;var args = '%s';var imgs = document.getElementsByTagName("img");var imgIdx = undefined;if (imgs.length == 0) return;if (imgs.length > 1) {if (args.length > 1) imgIdx = parseInt(args[1]);if (imgIdx === undefined || isNaN(imgIdx) || imgIdx < 1 || imgIdx > imgs.length) {numberImgs();imgIdx = parseInt(prompt(`There are ${imgs.length} images, select index:`, 1));}if (isNaN(imgIdx) || imgIdx < 1 || imgIdx > imgs.length) return;url = imgs[imgIdx - 1].src;} else {url = imgs[0].src;}if (!url) return;url = encodeURIComponent(url);window.open("https://saucenao.com/search.php?url=" + url);window.open("https://lens.google.com/uploadbyurl?url=" + url);window.open("https://www.bing.com/images/searchbyimage?cbir=sbi&imgurl=" + url);window.open("https://www.tineye.com/search?url=" + url);window.open("https://yandex.com/images/search?rpt=imageview&url=" + url);function numberImgs() {var imgs = document.getElementsByTagName("img");for (var img = 0; img < imgs.length; img++) {var parent = imgs[img].parentElement;if (!parent) continue;var numberDiv = document.createElement("div");numberDiv.innerHTML = 1 + img;numberDiv.className = "tmpImgNumberDiv";numberDiv.style.position = "absolute";numberDiv.style.padding = "2px 9px 2px 6px";numberDiv.style.background = "#f00";numberDiv.style.color = "#fff";numberDiv.style.zIndex = "9999";numberDiv.style.lineHeight = "normal";parent.prepend(numberDiv);}setTimeout(function() {var imgNumbers = document.getElementsByClassName("tmpImgNumberDiv");var idx = imgNumbers.length - 1;while (idx >= 0) {imgNumbers[idx].remove();idx--;}}, 5000);}})();