我以编程方式创建图片,将其转换为数据并返回并获得不同的图片。
$O365Groups = Get-UnifiedGroup
ForEach ($O365Group in $O365Groups){Get-UnifiedGroupLinks -Identity $O365Group.Identity -LinkType Members | Where Name -EQ $UserID}
请解释发生了什么以及如何解决问题。谢谢!
答案 0 :(得分:1)
“罪魁祸首”行:
UIGraphicsBeginImageContextWithOptions(size, false, 0)
在UIGraphicsBeginImageContextWithOptions()
的文档中查找最后一个参数(scale
)
比例
应用于位图的比例因子。 如果您指定值为0.0,则比例因子将设置为 设备的主屏幕。
如果您的设备是Retina(* 2),则比例因子将为2。