Skip to content

(Rdx) Usage

Read Stanton edited this page May 22, 2024 · 4 revisions

Usage

SmartImage.Rdx is the cross-platform command-line form of SmartImage.

Argument Values Description
-h, --help Display help info
-v, --version Display version info
-e, --search-engines <engines...> Search engines (comma-delimited)
-p, --priority-engines <engines...> Priority engines (comma-delimited)
--read-cookies Reads browser cookies for more reliable search results (Firefox only)
--live Displays results in real-time as a table
-f, --output-format <format>: None, Delimited Output file format (comma-delimited)
-o, --output-file <filename> Output file format
-d, --output-delim <delimiter> Output file delimiter
--output-fields <fields...>: None, Name, Url, Similarity, Artist, Site Output fields (comma-delimited)
-x, --command-exe <path> Command/executable to invoke upon completion
-c, --command-args <args> Arguments to pass to command
--keep-open Ask confirmation before exiting

Input

Input can either be a direct image URI or a file path. Standard input piping is also supported, in which case the input can either be a file path or binary image data.

Integration

Context menu

Context menu integration is supported on Linux and Windows.

Linux

sudo ./SmartImage integrate --ctx-menu <true/false>

Root permission is required for writing to /usr/share/applications.

Windows

./SmartImage integrate --ctx-menu <true/false>

ShareX

SmartImage.Rdx is compatible with ShareX actions.

Examples

  1. Search by direct image URI, write results to output.csv

./SmartImage "https://i.redd.it/xixxli0axz7b1.jpg" -o output.csv

  1. (Linux) Store file path in shell variable cx1 which is piped to SmartImage; reads cookies, priority engines is set to Auto, search engines are Artwork and Yandex.
cx1="/home/neorenegade/1654086015521.png"
neorenegade@localhost:/mnt/c/Users/Deci/$ echo -nE $cx1 | ./SmartImage --read-cookies -p Auto -e Artwork,Yandex
  1. (Windows) Read image bytes into variable $cx2 which is piped to SmartImage; reads cookies, priority engines is set to Auto, search engines are Artwork and Yandex.
$cx2=[System.IO.File]::ReadAllBytes($(Resolve-Path "..\..\Pictures\Art\Atago_final_1-3.png"))
$cx2|.\SmartImage.exe --read-cookies -p Auto -e Artwork,Yandex

About

Last updated: 2024-05-22 v1.0.5

Clone this wiki locally