Powershell wkhtmltopdf.exe:libpng 警告:iCCP:已知不正确的 sRGB 配置文件
Powershell wkhtmltopdf.exe : libpng warning: iCCP: known incorrect sRGB profile
在 Powershell 中使用 wkhtmltopdf,PDF 文件按预期打印,但会发出如下警告:
& "C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" --print-media-type -q --header-left [webpage] --header-font-size 7 --footer-left [isodate] $listing.Url $pdfDest
wkhtmltopdf.exe : libpng warning: iCCP: known incorrect sRGB profile
At R:\powershell_scripts\aso\get_individual_aircraft.ps1:138 char:13
+ & "C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" --pr ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (libpng warning:...ct sRGB profile:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
我想处理这个警告,或者因为 pdf 工作正常,我想取消警告。我需要一些指导。
我可以从错误中看出该命令在第 138 行引用了 get_individual_aircraft.ps1
。
你能把
$ErrorActionPreference = 'SilentlyContinue';
在该脚本中查看它是否有效。我相信 EXE 是在该脚本的帮助下被调用的。
在 Powershell 中使用 wkhtmltopdf,PDF 文件按预期打印,但会发出如下警告:
& "C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" --print-media-type -q --header-left [webpage] --header-font-size 7 --footer-left [isodate] $listing.Url $pdfDest
wkhtmltopdf.exe : libpng warning: iCCP: known incorrect sRGB profile
At R:\powershell_scripts\aso\get_individual_aircraft.ps1:138 char:13
+ & "C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" --pr ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (libpng warning:...ct sRGB profile:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
我想处理这个警告,或者因为 pdf 工作正常,我想取消警告。我需要一些指导。
我可以从错误中看出该命令在第 138 行引用了 get_individual_aircraft.ps1
。
你能把
$ErrorActionPreference = 'SilentlyContinue';
在该脚本中查看它是否有效。我相信 EXE 是在该脚本的帮助下被调用的。