渲染时图像会旋转

时间:2016-11-21 18:34:17

标签: html css angularjs firebase-storage

我的某些图片存在问题。我正在创建帖子网络模块,用户可以上传他们的图片。一切都很好,问题出在渲染图像时。 图像以正确的方向(纵向)上传,但是它以横向方向呈现,并且由于这只是一些图像,我无法使用CSS旋转来修复此问题或会影响正确渲染的那些。

<post ng-repeat="post in $ctrl.posts">
    <div class="image__container">
        <img ng-src="{{ post.displayImg }}" alt="{{ post.altName }}">
    </div>
</post>

上传过程是通过firebase存储API完成的,遵循documentation的示例代码,所有内容都正常工作,唯一的问题是渲染部分图片时。

有什么想法吗?

0 个答案:

没有答案