热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何防止或关闭位图的direct2d“自动缩放”?-Howtopreventorturnoffdirect2d“autoscaling”ofabitmap?

IhaveaproblemwithDirect2Dbitmapscaling.Iloadedabitmapfromafileusingthatexample,the

I have a problem with Direct2D bitmap scaling. I loaded a bitmap from a file using that example, then I wanted to scale bitmap by myself (fit to view saving proportions, add a shadow effect…) but Direct2D automatically scales bitmap (e.g. while resizing a window) and I do not know how to prevent this behavior.

我有Direct2D位图缩放问题。我使用该示例从文件加载了一个位图,然后我想自己缩放位图(适合查看保存比例,添加阴影效果......)但是Direct2D会自动缩放位图(例如在调整窗口大小时),我不知道如何防止这种行为。

For example, after bitmap loaded into a small window (CView) it fills the entire window correctly (according OnDraw) and when I maximize it D2D stretch my bitmap with losing bitmap quality and finally the bitmap greatly exceeds borders of the window despite my OnDraw method.

例如,在将位图加载到一个小窗口(CView)之后,它正确填充整个窗口(根据OnDraw),当我最大化它时,D2D拉伸我的位图失去位图质量,最后位图大大超出了窗口的边界,尽管我的OnDraw方法。

void CWDCView::OnDraw(CDC* /*pDC*/)
{
    CWDCDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc) return;

    HRESULT hr = S_OK;

    ID2D1DeviceContext *deviceContext;
    pRenderTarget->QueryInterface(&deviceContext);  //ID2D1HwndRenderTarget* pRenderTarget

    RECT rc = {0,0,0,0};
    GetClientRect(&rc);

    deviceContext->BeginDraw();

    deviceContext->Clear( D2D1::ColorF( D2D1::ColorF(0xC8D2E1, 1.0f) ) );

    D2D1_RECT_F rect={0,0,rc.right,rc.bottom};
    deviceContext->DrawBitmap(m_pBitmap,rect); //ID2D1Bitmap *m_pBitmap

    deviceContext->EndDraw();

    if (hr == D2DERR_RECREATE_TARGET)
    {
        hr = S_OK;
        ReleaseDeviceResources();
    }

    SafeRelease(&deviceContext);
}

So how to prevent or turn off this “autoscaling”?

那么如何防止或关闭这种“自动缩放”呢?

I want to add one thing. If draw bitmap like that deviceContext->DrawBitmap(m_pBitmap); /*without rect*/ it draws just a part of the bitmap without fitting it into the window but when maximizing it stretch it anyway.

我想补充一点。如果像那个deviceContext-> DrawBitmap(m_pBitmap)那样绘制位图; / *没有rect * /它只绘制位图的一部分而不将其装入窗口但是当最大化它时无论如何都要拉伸它。

1 个解决方案

#1


1  

A render target could not be just automatically resized. In your case, you are changing the size of the window, but this doesn't cause a change of the "attached" render target size.

渲染目标无法自动调整大小。在您的情况下,您正在更改窗口的大小,但这不会导致更改“附加”渲染目标大小。

You should handle the resize event of your window and then you have two possibilities:

您应该处理窗口的resize事件,然后您有两种可能性:

  1. Recreate your render target with the new size.
  2. 使用新大小重新创建渲染目标。
  3. Use ID2D1HwndRenderTarget::Resize or IDXGISwapChain::ResizeBuffers
  4. 使用ID2D1HwndRenderTarget :: Resize或IDXGISwapChain :: ResizeBuffers

Additionally, you can check:

此外,您可以检查:

  • Resizing Render Target Direct2D after WM_SIZE
  • 在WM_SIZE之后调整渲染目标Direct2D的大小
  • Smooth window resizing in Windows (using Direct2D 1.1)?
  • 在Windows中调整平滑窗口大小(使用Direct2D 1.1)?

推荐阅读
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • 本教程涵盖OpenGL基础操作及直线光栅化技术,包括点的绘制、简单图形绘制、直线绘制以及DDA和中点画线算法。通过逐步实践,帮助读者掌握OpenGL的基本使用方法。 ... [详细]
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • Android 渐变圆环加载控件实现
    本文介绍了如何在 Android 中创建一个自定义的渐变圆环加载控件,该控件已在多个知名应用中使用。我们将详细探讨其工作原理和实现方法。 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 本文详细介绍了 GWT 中 PopupPanel 类的 onKeyDownPreview 方法,提供了多个代码示例及应用场景,帮助开发者更好地理解和使用该方法。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • RecyclerView初步学习(一)
    RecyclerView初步学习(一)ReCyclerView提供了一种插件式的编程模式,除了提供ViewHolder缓存模式,还可以自定义动画,分割符,布局样式,相比于传统的ListVi ... [详细]
  • 从 .NET 转 Java 的自学之路:IO 流基础篇
    本文详细介绍了 Java 中的 IO 流,包括字节流和字符流的基本概念及其操作方式。探讨了如何处理不同类型的文件数据,并结合编码机制确保字符数据的正确读写。同时,文中还涵盖了装饰设计模式的应用,以及多种常见的 IO 操作实例。 ... [详细]
  • 基因组浏览器中的Wig格式解析
    本文详细介绍了Wiggle(Wig)格式及其在基因组浏览器中的应用,涵盖variableStep和fixedStep两种主要格式的特点、适用场景及具体使用方法。同时,还提供了关于数据值和自定义参数的补充信息。 ... [详细]
  • 本文详细介绍了中央电视台电影频道的节目预告,并通过专业工具分析了其加载方式,确保用户能够获取最准确的电视节目信息。 ... [详细]
  • 基于KVM的SRIOV直通配置及性能测试
    SRIOV介绍、VF直通配置,以及包转发率性能测试小慢哥的原创文章,欢迎转载目录?1.SRIOV介绍?2.环境说明?3.开启SRIOV?4.生成VF?5.VF ... [详细]
  • 2023年京东Android面试真题解析与经验分享
    本文由一位拥有6年Android开发经验的工程师撰写,详细解析了京东面试中常见的技术问题。涵盖引用传递、Handler机制、ListView优化、多线程控制及ANR处理等核心知识点。 ... [详细]
  • 本文详细介绍了 com.facebook.drawee.view.SimpleDraweeView 中的 setScaleType 方法,提供了多个实际代码示例,并解释了其在不同场景下的应用。 ... [详细]
  • ASP.NET MVC中Area机制的实现与优化
    本文探讨了在ASP.NET MVC框架中,如何通过Area机制有效地组织和管理大规模应用程序的不同功能模块。通过合理的文件夹结构和命名规则,开发人员可以更高效地管理和扩展项目。 ... [详细]
author-avatar
mobiledu2502869617
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有