- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁知道更换旧的正确方法QTMovieCurrentSizeAttribute
和 QTMovieSizeDidChangeNotification
任务?我正在尝试清除旧的弃用代码。
我发现 QTMovieNaturalSizeDidChangeNotification
不能替代 QTMovieSizeDidChangeNotification
.同样 QTMovieNaturalSizeAttribute
不能替代 QTMovieCurrentSizeAttribute
. Natural Size
指的是QTMovie
的原始分辨率,而 Current Size
指QTMovie
的分辨率正在显示(这也可能是电影被解码的分辨率,可以从原生调整大小)。例如,如果源是变形的或具有非方形像素,则 Natural
和 Current Size
s 不会相同。在 QuickTime 7 Player 的电影检查器窗口中可以很容易地看到差异。
据我所知,QuickTime X 允许多个 View 进入同一个 QTMovie
,所以 Current Size
的概念需要被新的东西取代。 (也许 Current Size
功能被移到了 QTMovieView
中?还是解码器查询?)任何人都可以向我推荐新方法的文档或示例代码吗?
已更新为显示 Natural
的电影检查器窗口的任何示例代码和 Current ('Actual') Sizes
,不使用弃用的代码,将是理想的。到目前为止,这一直很难解决。
最佳答案
IntSize MediaPlayerPrivate::naturalSize() const
{
if (!metaDataAvailable())
return IntSize();
// In spite of the name of this method, return QTMovieNaturalSizeAttribute transformed by the
// initial movie scale because the spec says intrinsic size is:
//
// ... the dimensions of the resource in CSS pixels after taking into account the resource's
// dimensions, aspect ratio, clean aperture, resolution, and so forth, as defined for the
// format used by the resource
NSSize naturalSize = [[m_qtMovie.get() attributeForKey:QTMovieNaturalSizeAttribute] sizeValue];
return IntSize(naturalSize.width * m_scaleFactor.width(), naturalSize.height * m_scaleFactor.height());
}
关于quicktime - QTMovie CurrentSize 属性和 QTMovieSize DidChangeNotification 替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6182760/
我的应用程序使用 iPodMusicPlayer,当暂停时,用户可能会出去并在 Apple 的音乐应用程序中进行更改,例如创建或修改播放列表,然后返回到我的应用程序。 我收到了预期的 MPMediaL
我正在处理的项目有一个将数据写入 UserDefaults 的扩展。然后在包含的应用程序中,UI 应该根据更改进行更新。问题是 UserDefaults.didChangeNotification除非
我不知道应该包含什么头文件。 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loadStateDi
在class ViewController: NSViewController中 class ViewController: NSViewController { override func
经过大量搜索,我无法找到是否需要将字典对象传递给: [NSUserDefaultsDidChangeNotification addObserver: forKeyPath: options: con
Apple 文档说我们需要注册 NSUbiquityIdentityDidChangeNotification 并将当前 iCloud token 与之前存储在 NSUserDefaults 中的 t
有谁知道更换旧的正确方法QTMovieCurrentSizeAttribute和 QTMovieSizeDidChangeNotification任务?我正在尝试清除旧的弃用代码。 我发现 QTMov
这是我当前的代码 func applicationDidBecameActive(notification:NSNotification) { println("Application is
我是一名优秀的程序员,十分优秀!