Browse Source

Add yandex images as image identification option (#430)

* Add yandex images as image identification option

* Update image_identification.html

* Fix indentation

Co-authored-by: Fred Brennan <[email protected]>
main
haruhianon609 2 years ago
committed by -
parent
commit
139e975bfb
  1. 1
      inc/config.php
  2. 4
      templates/post/image_identification.html

1
inc/config.php

@ -922,6 +922,7 @@
$config['image_identification_imgops'] = true;
$config['image_identification_exif'] = true;
$config['image_identification_google'] = true;
$config['image_identification_yandex'] = true;
// Anime/manga search engine.
$config['image_identification_iqdb'] = false;

4
templates/post/image_identification.html

@ -1,5 +1,4 @@
{% if file.thumb != 'file' and config.image_identification %}
<span class='image_id'>
{% if config.image_identification_imgops %}
<a href="http://imgops.com/{{ config.domain }}{{ config.uri_img }}{{ file.file }}" target="_blank">ImgOps</a>
@ -13,5 +12,8 @@
{% if config.image_identification_iqdb %}
<a href="http://iqdb.org/?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}" target="_blank">iqdb</a>
{% endif %}
{% if config.image_identification_yandex %}
<a rel="noreferrer" href="https://yandex.com/images/search?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}&rpt=imagelike" target="_blank">Yandex</a>
{% endif %}
</span>
{% endif %}

Loading…
Cancel
Save