[ai] Use vectosolve service for svg gen.

This commit is contained in:
John Preston
2026-03-22 23:06:47 +07:00
parent c12e152618
commit 21c6efa32a
2 changed files with 184 additions and 197 deletions
+11
View File
@@ -0,0 +1,11 @@
param([string]$outPath)
Add-Type -AssemblyName System.Windows.Forms
$img = [System.Windows.Forms.Clipboard]::GetImage()
if ($img) {
$img.Save($outPath, [System.Drawing.Imaging.ImageFormat]::Png)
Write-Host "Saved to $outPath"
exit 0
} else {
Write-Host "No image on clipboard"
exit 1
}