Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/powershell/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Powershell 压缩Azure Blob存储中已存在的图像_Powershell_Azure_Optimization_Azure Storage Blobs - Fatal编程技术网

Powershell 压缩Azure Blob存储中已存在的图像

Powershell 压缩Azure Blob存储中已存在的图像,powershell,azure,optimization,azure-storage-blobs,Powershell,Azure,Optimization,Azure Storage Blobs,我已经接管了一个项目,并试图优化一些已经到位的东西。当前最大的问题之一是所提供的图像是次优的。 存储中有80000多个图像,我一直在寻找一个脚本,它可以循环遍历所有图像,压缩图像并覆盖旧文件 我必须承认,我对powershell完全没有兴趣 这就是我发现的: 虽然此脚本成功地优化了图像,但它没有将图像放回正确的位置。它将其放入blob容器的根中 我已经报告了这个问题,但没有回应 有没有人能帮我,这样当它重新保存图像时,它就可以去它应该去的地方 剧本: <# .SYNOPSIS

我已经接管了一个项目,并试图优化一些已经到位的东西。当前最大的问题之一是所提供的图像是次优的。 存储中有80000多个图像,我一直在寻找一个脚本,它可以循环遍历所有图像,压缩图像并覆盖旧文件

我必须承认,我对powershell完全没有兴趣

这就是我发现的:

虽然此脚本成功地优化了图像,但它没有将图像放回正确的位置。它将其放入blob容器的根中

我已经报告了这个问题,但没有回应

有没有人能帮我,这样当它重新保存图像时,它就可以去它应该去的地方

剧本:

<#
    .SYNOPSIS
        Optimizes image file size for all PNG and JPG images in a Microsoft Azure blob storage
        container by processing them locally and replacing their content with the optimized result.

    .DESCRIPTION
        Image files are often needlessly oversized and can be compressed without quality loss using
        widely-available utilities. Microsoft Azure provides a blob storage service that can be used
        to host publicly-accessible images for websites or other purposes. For containers with large
        numbers of suboptimal images or for bulk optimization, this script optimizes all images in
        a blob storage container with a single action.

        When run the script prompts for Azure credentials if not already present in the PowerShell session.
        It then connects and interactively allows the user to select a subscription, storage account, and container
        where the images reside. It then downloads each file (those blobs with png or jpg/jpeg extensions),
        optimizes using jpegtran.exe and optipng.exe utilities, and uploads the result to the blob.

        Upon upload the blob is marked as optimized using custom metadata. This allows the script to be run
        again without reprocessing optimzed images.

        The open source jpegtran.exe and optipng.exe executable files must exist in the same directory
        as the script. In addition, the Azure PowerShell module must be installed.

    .PARAMETER  PromptCredentials
        By default the script will connect to Azure with any existing credentials that have been used
        in previous connections. By including this switch, the script will always prompt for credentials.

    .EXAMPLE
        To run from a PowerShell prompt:

        .\Optimize-AzureBlobImages.ps1

    .EXAMPLE
        To run from a PowerShell prompt with credentials prompt:

        .\Optimize-AzureBlobImages.ps1 -PromptCredentials

    .INPUTS
        None.

    .OUTPUTS
        No objects returned.

    .NOTES
        For more details and implementation guidance, see the associated documentation at https://automys.com
#>

[CmdletBinding()]
Param(
    [switch]$PromptCredentials = $false,

    $Command # Placeholder parameter to workaround Windows 7 right-click run bug. Not used.
)

Write-Host Hello

# Verify Azure module installed/loaded
if($null -ne (Get-Module -ListAvailable "Azure"))
{
    Import-Module Azure
}
else
{
    Write-Host "ERROR: PowerShell module for Microsoft Azure not found. Please install as described at http://azure.microsoft.com/en-us/documentation/articles/powershell-install-configure/" -ForegroundColor Red
    Read-Host "Press [Enter] to exit..."
    return
}

# Verify optimization executable files present
if(-not (Test-Path "$PSScriptRoot\optipng.exe"))
{
    Write-Host "Could not find the file optipng.exe in the script file folder [$PSScriptRoot]. Please download from [http://optipng.sourceforge.net/] and copy it there. Exiting script." -ForegroundColor Red
    Read-Host "Press [Enter] to exit..."
    return
}
if(-not (Test-Path "$PSScriptRoot\jpegtran.exe"))
{
    Write-Host "Could not find the file jpegtran.exe in the script file folder [$PSScriptRoot]. Please download from [http://jpegclub.org/jpegtran/] and copy it there. Exiting script." -ForegroundColor Red
    Read-Host "Press [Enter] to exit..."
    return
}

# Prompt for credentials if none are stored or user specified to prompt
Write-Host Connecting to Azure...
if($PromptCredentials -eq $true -or (Get-AzureAccount).Count -eq 0)
{
    Add-AzureAccount
}

# Get subscriptions
$subscriptions = @()
$subscriptions += Get-AzureSubscription

if($subscriptions.Count -eq 0)
{
    Write-Host "No subscriptions were found for this account" -ForegroundColor Red
    Read-Host "Press [Enter] to exit..."
    return
}

# If more than one subscription available, show a selection prompt to user
if($subscriptions.Count -gt 1)
{
    $choices = @()
    $i = 0
    foreach($subscription in $subscriptions)
    {
        $choice = New-Object System.Management.Automation.Host.ChoiceDescription "&$i. $($subscription.SubscriptionName)","Use this subscription"
        $choices += $choice
        $i++
    }

    $cancelChoice = New-Object System.Management.Automation.Host.ChoiceDescription "(&Cancel)","Exits the script"
    $choices += $cancelChoice

    # Prompt the user select subscription
    $title = "Select Azure Subscription"
    $message = "More than one Azure subscription is available. Which one contains the target storage account?"
    $selectionIndex = $host.ui.PromptForChoice($title, $message, $choices, 0) 

    if($choices[$selectionIndex].Label -eq "(Cancel)")
    {
        Write-Host Script cancelled
        return
    }

    $targetSubscription = $subscriptions[$selectionIndex].SubscriptionName
}
else
{
    $targetSubscription = $subscriptions[0].SubscriptionName
    Write-Host Defaulting to only subscription found
}

# Set current subscription
Select-AzureSubscription -SubscriptionName $targetSubscription
Write-Host "Using subscription: [$targetSubscription]" -ForegroundColor Green

# Get available storage accounts
$storageAccounts = @()
$storageAccounts += Get-AzureStorageAccount -WarningAction SilentlyContinue

if($storageAccounts.Count -eq 0)
{
    Write-Host "No storage accounts were found in the subscription [$targetSubscription]. Exiting script." -ForegroundColor Red
    Read-Host "Press [Enter] to exit..."
    return
}

# If more than one storage account available, show a selection prompt to user
if($storageAccounts.Count -gt 1)
{
    $choices = @()
    $i = 0
    foreach($storageAccount in $storageAccounts)
    {
        $choice = New-Object System.Management.Automation.Host.ChoiceDescription "&$i. $($storageAccount.StorageAccountName)","Use this storage account"
        $choices += $choice
        $i++
    }

    $cancelChoice = New-Object System.Management.Automation.Host.ChoiceDescription "(&Cancel)","Exits the script"
    $choices += $cancelChoice

    # Prompt the user select subscription
    $title = "Select storage account"
    $message = "More than one storage account is available in subscription [$targetSubscription]. Which one has the target storage container?"
    $selectionIndex = $host.ui.PromptForChoice($title, $message, $choices, 0) 

    if($choices[$selectionIndex].Label -eq "(Cancel)")
    {
        Write-Host Script cancelled
        return
    }

    $targetStorageAccount = $storageAccounts[$selectionIndex].StorageAccountName
}
else
{
    $targetStorageAccount = $storageAccounts[0].StorageAccountName 
    Write-Host Defaulting to only storage account found

}

# Set current storage account
Set-AzureSubscription -SubscriptionName $targetSubscription -CurrentStorageAccountName $targetStorageAccount 
Write-Host "Using storage account: [$targetStorageAccount]" -ForegroundColor Green

# Get available storage containers
$storageContainers = @()
$storageContainers += Get-AzureStorageContainer

if($storageContainers.Count -eq 0)
{
    Write-Host "No containers were found in the storage account [$targetStorageAccount]. Exiting script." -ForegroundColor Red
    Read-Host "Press [Enter] to exit..."
    return
}

# If more than one storage account available, show a selection prompt to user
if($storageContainers.Count -gt 1)
{
    $choices = @()
    $i = 0
    foreach($storageContainer in $storageContainers)
    {
        $choice = New-Object System.Management.Automation.Host.ChoiceDescription "&$i. $($storageContainer.Name)","Optimize images in this container"
        $choices += $choice
        $i++
    }

    $cancelChoice = New-Object System.Management.Automation.Host.ChoiceDescription "(&Cancel)","Exits the script"
    $choices += $cancelChoice

    # Prompt the user select subscription
    $title = "Select storage container"
    $message = "More than one container exists in the storage account. Which one has the images to optimize?"
    $selectionIndex = $host.ui.PromptForChoice($title, $message, $choices, 0) 

    if($choices[$selectionIndex].Label -eq "(Cancel)")
    {
        Write-Host Script cancelled
        return
    }

    $targetStorageContainer = $storageContainers[$selectionIndex].Name
}
else
{
    $targetStorageContainer = $storageContainers[0].Name
    Write-Host Defaulting to only container in the storage account

}

Write-Host "Selected storage container: [$targetStorageContainer]" -ForegroundColor Green

$sourceImages = @()

# Get PNG images 
$sourceImages += Get-AzureStorageBlob -Container $targetStorageContainer -Blob "*png"

# Get JPG images 
$sourceImages += Get-AzureStorageBlob -Container $targetStorageContainer -Blob "*jp*g"

$totalImageCount = $sourceImages.Count

if($totalImageCount -eq 0)
{
    Write-Host "No PNG or JPG images found in the container. Exiting script." -ForegroundColor Cyan
    Read-Host "Press [Enter] to exit..."
    return
}

# Filter to only those not marked as previously optimized
$sourceImages = $sourceImages | where {!$_.ICloudBlob.Metadata.ContainsKey("optimized")}

if($sourceImages.Count -eq 0)
{
    Write-Host "All [ $totalImageCount ] images in the container are marked as previously optimized (with 'optimized = true' custom metadata value). Exiting script" -ForegroundColor Cyan
    Read-Host "Press [Enter] to exit..."
    return
}

# Prompt the user for confirmation
if($ConfirmPreference -eq "High")
{
    $title = "Confirm Optimization"
    $message = "Do you want to optimize and overwrite [ $($sourceImages.Count) ] PNG and JPG image blobs in the container [$targetStorageAccount\$targetStorageContainer]?"
    $yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes","Performs optimization"
    $no = New-Object System.Management.Automation.Host.ChoiceDescription "&No","Cancels the script"
    $options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)
    $result = $host.ui.PromptForChoice($title, $message, $options, 0) 

    switch ($result)
    {
        0 {
            Write-Host "`nOK, giddy up...`n"
        }
        1 {
            Write-Host "`nNo worries. Action cancelled."
            return
        }
    }
}

$tempDirectory = $env:TEMP

foreach($image in $sourceImages)
{
    $optimized = $false

    # Download image blob to file
    $imageFilePath = "$tempDirectory\$($image.Name)"
    $image | Get-AzureStorageBlobContent -Destination $tempDirectory -Force | Out-Null
    $initialSize = Get-ChildItem $imageFilePath | select -ExpandProperty Length

    Write-Host Processing $image.Name ...

    if($image.Name -like "*png")
    {
        # Optimize with optipng.exe and save output to variable
        &"$PSScriptRoot\optipng.exe" $imageFilePath 2>&1 | Tee-Object -Variable result | Out-Null
        if(($result -match "Input file size|already optimized" | Measure | select -ExpandProperty Count) -gt 0)
        {
            $optimized = $true
        }
    }
    elseif($image.Name -like "*jp*g") 
    {
        # Optimize with jpegtran.exe and save output to variable
        &"$PSScriptRoot\jpegtran.exe" -optimize -verbose $imageFilePath $imageFilePath 2>&1 | Tee-Object -Variable result | Out-Null
        if(($result -match "End of Image" | Measure | select -ExpandProperty Count) -gt 0)
        {
            $optimized = $true
        }
    }
    else
    {
        Write-Host "Skipping file with unexpected extension: [$imageFilePath]" -ForegroundColor Yellow
    }

    $processedSize = Get-ChildItem $imageFilePath | select -ExpandProperty Length
    [int]$savingsPercent = ($initialSize - $processedSize) / $initialSize * 100
    Write-Host `tSaved ($initialSize - $processedSize) bytes [ $savingsPercent% ]

    if($optimized -eq $true)
    {
        # Upload optimized file to replace blob, retaining all existing metadata and adding a custom "optimized=true" marker to prevent future attempts
        $metadata = @{"optimized" = "true"}
        Set-AzureStorageBlobContent -File $imageFilePath -Container $targetStorageContainer -Metadata $metadata -Force | Out-Null
    }

    # Remove temp file
    Remove-Item $imageFilePath
}

Write-Host `nOptimization complete! -ForegroundColor Green

[CmdletBinding()]
Param(
[开关]$PromptCredentials=$false,
$Command#占位符参数用于解决Windows 7右键单击运行错误。未使用。
)
写主持人你好
#验证Azure模块是否已安装/加载
if($null-ne(获取模块-ListAvailable“Azure”))
{
导入模块Azure
}
其他的
{
写入主机“错误:找不到Microsoft Azure的PowerShell模块。请按照中的说明安装http://azure.microsoft.com/en-us/documentation/articles/powershell-install-configure/“-前底色红色
读取主机“按[Enter]退出…”
返回
}
#验证优化可执行文件是否存在
if(-not(测试路径“$PSScriptRoot\optipng.exe”))
{
“写入主机”在脚本文件文件夹[$PSScriptRoot]中找不到文件optpng.exe。请从下载[http://optipng.sourceforge.net/]然后复制到那里。退出脚本。“-ForegroundColor红色
读取主机“按[Enter]退出…”
返回
}
if(-not(测试路径“$PSScriptRoot\jpegtran.exe”))
{
“写入主机”在脚本文件文件夹[$PSScriptRoot]中找不到文件jpegtran.exe。请从下载[http://jpegclub.org/jpegtran/]然后复制到那里。退出脚本。“-ForegroundColor红色
读取主机“按[Enter]退出…”
返回
}
#如果未存储凭据或指定用户进行提示,则提示输入凭据
写入连接到Azure的主机。。。
如果($PromptCredentials-eq$true-或(Get AzureAccount).Count-eq 0)
{
添加AzureAccount
}
#获取订阅
$subscriptions=@()
$subscriptions+=获取AzureSubscription
如果($subscriptions.Count-等式0)
{
写入主机“未找到此帐户的订阅”-ForegroundColor红色
读取主机“按[Enter]退出…”
返回
}
#如果有多个订阅可用,则向用户显示选择提示
如果($subscriptions.Count-gt 1)
{
$choices=@()
$i=0
foreach($订阅中的订阅)
{
$choice=New Object System.Management.Automation.Host.ChoiceDescription“&$i.$($subscription.SubscriptionName)”,“使用此订阅”
$choices+=$choice
$i++
}
$cancelChoice=New Object System.Management.Automation.Host.ChoiceDescription“(&Cancel)”,“退出脚本”
$choices+=$cancelChoice
#提示用户选择订阅
$title=“选择Azure订阅”
$message=“有多个Azure订阅可用。哪一个包含目标存储帐户?”
$selectionIndex=$host.ui.PromptForChoice($title、$message、$choices,0)
如果($choices[$selectionIndex].Label-eq“(取消)”)
{
写入主机脚本已取消
返回
}
$targetSubscription=$subscriptions[$selectionIndex].SubscriptionName
}
其他的
{
$targetSubscription=$subscriptions[0]。SubscriptionName
写入主机默认为仅找到订阅
}
#设置当前订阅
选择AzureSubscription-SubscriptionName$targetSubscription
写入主机“使用订阅:[$targetSubscription]”-ForegroundColor绿色
#获取可用的存储帐户
$storageAccounts=@()
$storageAccounts+=获取AzureStorageAccount-警告操作SilentlyContinue
如果($storageAccounts.Count-等式0)
{
写入主机“在订阅[$targetSubscription]中未找到任何存储帐户”。正在退出脚本。“-ForegroundColor红色
读取主机“按[Enter]退出…”
返回
}
#如果有多个存储帐户可用,则向用户显示选择提示
如果($storageAccounts.Count-gt 1)
{
$choices=@()
$i=0
foreach($storageAccounts中的storageAccount)
{
$choice=New Object System.Management.Automation.Host.ChoiceDescription“&$i.$($storageAccount.StorageAccountName)”,“使用此存储帐户”
$choices+=$choice
$i++
}
$cancelChoice=New Object System.Management.Automation.Host.ChoiceDescription“(&Cancel)”,“退出脚本”
$choices+=$cancelChoice
#提示用户选择订阅
$title=“选择存储帐户”
$message=“订阅[$targetSubscription]中有多个存储帐户可用。哪个帐户具有目标存储容器?”
$selectionIndex=$host.ui.PromptForChoice($title、$message、$choices,0)
如果($choices[$selectionIndex].Label-eq“(取消)”)
{
写入主机脚本已取消
返回
}
$targetStorageAccount=$storageAccounts[$selectionIndex].StorageAccountName
}
其他的
{
$targetStorageAccount=$storageAccounts[0]。StorageAccountName
仅将主机默认值写入找到的存储帐户
}
#设置当前存储帐户
设置AzureSubscription-SubscriptionName$targetSubscription-CurrentStorageAccountName$targetStorageAccount
写入主机“使用存储帐户:[$targetStorageAccount]”-ForegroundColor绿色
#获取可用的存储容器
$storageContainers=@()
$storageContainers+=获取AzureStorageContainer
如果($storageContainers.Count-等式0)
{
写入主机“在存储帐户[$targetStorageAccount]中未找到任何容器”。正在退出脚本。“-ForegroundColor红色
读取主机“按[Enter]退出…”
返回
}
#如果有多个存储帐户可用,则向用户显示选择提示
如果($c)
Set-AzureStorageBlobContent -File $imageFilePath -Container $targetStorageContainer -Metadata $metadata -Force | Out-Null
Set-AzureStorageBlobContent -File $imageFilePath -Container $targetStorageContainer -Blob $image.Name -Metadata $metadata -Force | Out-Null