mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
[ai] Use vectosolve service for svg gen.
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user