emptygif
Dil: Türkçe

Tüm diller ve framework'ler

PowerShell PowerShell

PowerShell için, /pixel.gif isteklerine başlangıçta bir kez çözülen boş GIF ile yanıt veren bir PowerShell örneği.

PowerShell PowerShell

Dosya
pixel.ps1
# Works in Windows PowerShell 5.1 and PowerShell 7+ (.NET needs an absolute path).
$bytes = [Convert]::FromBase64String('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')
[IO.File]::WriteAllBytes((Join-Path $PWD 'pixel.gif'), $bytes)

Bu örneği çalıştırıp döndürdüğü baytları karşılaştırdık.

Resmî site: PowerShell

PowerShell için daha fazlası