an unknown error has occurred,装显卡驱动的时候显示这个,请问有啥方法能解决?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了an unknown error has occurred,装显卡驱动的时候显示这个,请问有啥方法能解决?相关的知识,希望对你有一定的参考价值。
我重新卸载驱动,用显卡自带光盘装也是提示这个,用什么驱动人生,驱动精灵也是提示这个,请问还有什么方法么?
an unknown error has occurred是出现了未知的错误;
有可能是当前的系统或者是驱动版本不兼容导致的,可以更新或者是升级系统版本后在安装显卡驱动;
显卡驱动的安装建议到官网上根据显卡型号和系统位数搜索匹配的驱动文件下载安装,不要使用第三方软件安装。
重装系统还不行,就基本确定是显卡坏了,得换。本回答被提问者采纳 参考技术B 运行 cmd
regsvr32 c:\windows\SysWOW64\wintrust.dll
使用 PHAssets 时出现此错误:Creating an image format with an unknown type is an error
【中文标题】使用 PHAssets 时出现此错误:Creating an image format with an unknown type is an error【英文标题】:While using PHAssets getting this error: Creating an image format with an unknown type is an error 【发布时间】:2017-04-06 04:49:50 【问题描述】:为此,我创建了照片中所有缩略图图像的集合视图,我在下面编写了代码:
var photoAssets: PHFetchResult<PHAsset> = PHFetchResult()
let allPhotosOptions = PHFetchOptions()
allPhotosOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: true)]
let allPhotosResult = PHAsset.fetchAssets(with: PHAssetMediaType.image, options: allPhotosOptions)
photoAssets = allPhotosResult
现在我有 Array 的 PhotoAssets 用于为我编写的每个 PHAsset 获取缩略图:
let manager = PHImageManager.default()
let requestOptions = PHImageRequestOptions()
public var thumbnailSize = CGSize(width: 100, height: 100)
requestOptions.isSynchronous = true
requestOptions.isNetworkAccessAllowed = true
requestOptions.deliveryMode = .highQualityFormat
requestOptions.resizeMode = .exact
manager.requestImage(for: selectedAsset, targetSize: self.thumbnailSize, contentMode: PHImageContentMode.aspectFill, options: requestOptions)
image, info in
// here I am getting the thumbnail image this code is running fine.
当我从 UICollection 视图中选择任何缩略图图像时,我会获取索引并从 photoAssets 数组中获取 PHAsset。 现在为这个 PHAsset 创建完整尺寸的图像,我编写了代码:
let manager = PHImageManager.default()
let requestOptions = PHImageRequestOptions()
public var thumbnailSize = CGSize(width: 100, height: 100)
requestOptions.isSynchronous = true
requestOptions.isNetworkAccessAllowed = true
requestOptions.deliveryMode = .highQualityFormat
requestOptions.resizeMode = .exact
manager.requestImage(for: selectedAsset, targetSize: PHImageManagerMaximumSize, contentMode: PHImageContentMode.aspectFill, options: requestOptions)
image, info in
//completion(image, info as AnyObject)
//here i'll get the full size image for requested PHasset
我的问题是在为未启用 iCloud 的设备获取全尺寸图像时,我正在获取图像,但对于那些启用 iCould 的设备,我得到 image = nil 和 创建未知类型的图像格式是错误的
【问题讨论】:
【参考方案1】:创建未知类型的图像格式是错误的
这是 xcode 中的一个错误,如果选择器可以正确选择并返回图像,则表示一切正常,请忽略它。
【讨论】:
以上是关于an unknown error has occurred,装显卡驱动的时候显示这个,请问有啥方法能解决?的主要内容,如果未能解决你的问题,请参考以下文章
电脑驱动是出现 an unknown error has occurred 则么解决?
安装游戏的时候马上完成了。怎么老出现AN unknown error has occurred 怎么弄
an unknown error has occurred,装显卡驱动的时候显示这个,请问有啥方法能解决?
安装游戏的时候马上完成了。怎么老出现AN unknown error has occurred 怎么弄
第一次使用Genymotion遇到的问题:for an unknown reson,VirtualBox DHCP has not assigned an IP address to virtual
[Creating an image format with an unknown type is an error] on cordova, ios 10