Skip to content

(Rdx) Server

𝘿𝙚𝙘𝙞𝙢𝙖𝙩𝙞𝙤𝙣 edited this page Feb 25, 2025 · 1 revision

Server

SmartImage can host a listen server using the server command.

  • Body: Image URI
  • Form: multipart/form-data binary image

Example

(PowerShell)

$x = iwr 'http://localhost:25565/search' -Form @{file=get-item "<file>"} `
if ($$) { `
$y = $x.Content | ConvertFrom-Json `
Start-Process $y.Best.Url `
} `
$y
Clone this wiki locally