Direct2D is a hardware-accelerated, immediate-mode, 2-D graphics API that provides high performance and high-quality rendering for 2-D geometry, bitmaps, and text. The Direct2D API is designed to interoperate well with GDI, GDI+, and Direct3D.

learn more… | top users | synonyms

-3
votes
0answers
26 views

Draw Text along a path

I need to draw text along a curved path/bezier. Does somebody happen to have a tutorial ready or even some sample code to digest? Thx Fortis
-1
votes
0answers
15 views

RGB values for colors in direct2d

I am learning win32 api from MSDN. I came across this topic(http://msdn.microsoft.com/en-us/library/windows/desktop/ff684180(v=vs.85).aspx) which talked about the colors in direct2d. But there are ...
0
votes
0answers
9 views

Cant find FileOpenPicker Direct2D 1.1

I wanted to use Direct2D 1.1 and take advantage of the effects. Since I have Windows 7 and not Windows 8 I was told to download visual studios express 2012 for desktop with Windows 8SDK to write my ...
-1
votes
0answers
18 views

Nothing drawing in window using visual studios 2012 express c++ with Direct2D

I learned through a tutorial on msdn for Direct2D 1.0 and I found a website that explained what code to change for Direct2D 1.1 I got it so it compiles but the window just shows a mirror image of the ...
0
votes
0answers
16 views

How to merge a brush to a image

How to merge a brush(such as lineargradientbrush) to a ID2D1Image with transparency? Can I use the sample "Use a Radial Gradient Brush as an Opacity Mask" from MSDN, then convert the results to ...
0
votes
2answers
23 views

Downloaded visual stuios 2012 for windows cant find dx.h

I downloaded visual studios 2012 express for windows so I can use the windows 8 direct2d effects. I tried to follow the starting project on msdn it says include the d2d1.h and d2d1_1.h headers first ...
0
votes
1answer
24 views

Direct2D Create SwapChain

I am trying to program a Direct2D desktop app based on a Windows tutorial, but am having problems creating a SwapChain1. In the code below everything gets initialized until the ...
0
votes
0answers
33 views

CreateHwndRenderTarget() return error in fullscreen mode

I have problem with CreateHwndRenderTarget() in fullscreen mode. In window mode it work right. Function for set fullscreen mode : void SetFullScreenMode(HWND hwnd) { static WINDOWPLACEMENT g_wpPrev ...
0
votes
0answers
67 views

Large images with Direct2D

Currently I am developing application for the Windows Store which does real time-image processing using Direct2D. It must support various sizes of images. The first problem I have faced is how to ...
0
votes
1answer
40 views

Direct2D - using lighting effects in direct2d

I got the direct2d lighting sample from http://code.msdn.microsoft.com/windowsapps/Direct2D-lighting-effects-e0801da3 URL. The sample looks very impressive, but what I don't understand is that after ...
3
votes
1answer
70 views

Access overloaded functions in DLL

The Direct2D system library provides 4 overloaded versions for the D2D1CreateFactory function. Now suppose I'm loading the Direct2D library dynamically, and obtain the pointer to the CreateFactory ...
0
votes
1answer
54 views

What does “1” in “D2D1” stands for?

D2D1 is the namespace for Direct2D technology in Win32. However I don't understand the etymology of this name. The D2D part most likely refers to Direct2D, however the last 1 puzzles ...
0
votes
0answers
121 views

Add photo frame to image in Direct2D using C#

I'm developing a windows store app using C#. I want to add photo frame to an image using Direct2D. How do I this photo frame effect in Direct2D? This is my code: using (Graphics grfx = ...
0
votes
0answers
37 views

direct2d: dynamic linestrip rendering

I have been planning to port my data acq. software to an accelerated 2d vector api for a long time now. Since the software is used on windows only, I figured it would be worthwile to take a look at ...
0
votes
1answer
54 views

Creating an bitmap atlas with direct2d, what does “current bitmap” refer to?

So I am trying to get bitmaps from an atlas with direct2d. This is the only method I have to that maybe does what I want but... what does the current bitmap refer to? If I understand this well, this ...
0
votes
0answers
54 views

How to use Direct2D with MinGW in Code::Blocks

I red that GDI and GDI+ is now obsolete so I tried to use Direct2D. I have TDM MinGW64 4.7 up with Code::Blocks as IDE. It has the Direct2D headers in the pack - which is good as the WinAPI stuff ...
-1
votes
1answer
34 views

Memory leaks releasing ID2D1PathGeometry

How do I delete the objects embedded in an ID2D1PathGeometry when it is released?
0
votes
1answer
80 views

Interop with Compute Shaders and Direct2D?

I'm working on an app that integrates WPF and DirectX. My goal is to have one shared surface that I use to: Load inital image data. Run DirectX 11 Compute Shaders to do some image processing. Draw ...
2
votes
1answer
84 views

Using C++ AMP with Direct2D

Is it possible to use a texture generated by C++ AMP as a screen buffer? I would like to generate an image with my C++ AMP code (already done) and use this image to fill the entire screen of Windows ...
1
vote
2answers
72 views

How Do I Determine Whether to Use '->' versus '.'

I'm following a D2D sample and therein, this code came up: if(!(D2D1_WINDOW_STATE_OCCLUDED & m_renderTarget->CheckWindowState())) { m_renderTarget->BeginDraw(); ...
0
votes
0answers
103 views

Photoshop curve adjustments in Direct2D

For my image processing application, i use Photoshop tutorial to give effects to images using Direct2D and C#. Now i trying to get the equivalent value of Photoshop Curve color(rgb) in direct2d or in ...
0
votes
1answer
35 views

How to have the changes stay?

I have MainScreen.cpp void MainScreen::Show(D2DResources* pD2DResources) { HRESULT hr = S_OK; ID2D1Bitmap* pBitmap=pD2DResources->GetpCurrentScreen(); hr = ...
0
votes
3answers
60 views

Why does this work even though the function is not called with a pointer to a pointer as a parameter?

In a code from MSDN, there is this: HRESULT DemoApp::LoadBitmapFromFile( ID2D1RenderTarget *pRenderTarget, IWICImagingFactory *pIWICFactory, PCWSTR uri, UINT destinationWidth, ...
0
votes
0answers
63 views

What initialization error? [duplicate]

So, I have MainScreen.cpp #include "MainScreen.h" #include "Direct2dResources.h" void LoginScreen::Show(D2DResources* pD2DResources) { HRESULT hr = S_OK; IWICImagingFactory* ...
-1
votes
1answer
107 views

Why wont this code, almost identical to one from MSDN, won't work?

I have left some //Comments to help you navigate through the issue I have Main.cpp int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nShowCmd) { Game game; ...
1
vote
1answer
609 views

Instagram Photo Effects in windows 8 metro apps using c#

i need to implement instagram photo effects like amaro,hudson,sepia,rise...,i know this article only use basic effects refer ...
3
votes
0answers
203 views

Direct2D: Opaque child windows over a transparent parent window

I'd like to create a Direct2D application that has a transparent background on which a few opaque complex controls are placed. The problem can be broken into several sub-problems: Architecture: ...
0
votes
1answer
112 views

Direct2D Memory overuse when resizing windows

I've recently started to use Direct2D, found out some strange behaviour when resizing the window: memory use skyrocket, and in the end I get some "out of memory error". Here is the layout of my code : ...
0
votes
1answer
46 views

Cumulative translation on Matrix3x2F

I am working on a WinRT app that uses D2D to display a bitmap. I am looking to incorporate multitouch to be able to pan and zoom in the bitmap. I am using the OnManipulatedUpdated event to update a ...
1
vote
0answers
177 views

Capturing text in IE 9 with C++

I have a requirement to capture text from IE 9 (preferably the text currently shown and not the full HTML document). Previous versions of IE used TextOut and you can clearly see the text using an API ...
0
votes
0answers
91 views

C++ WTL CButton Direct2D

I'd like to create controls with WTL and rendering the png/jpeg/gif images with Direct2D as the skin of the controls. Can I override the skin of the CButton with Direct2D? So instead of the default ...
0
votes
0answers
67 views

Direct2D collision detection between images

I have spend a lot of time to figure it out how to solve this problem. I'm writing a windows store app using direct2d and I would write the collision detection between ID2D1Bitmap objects. I'm using ...
0
votes
0answers
58 views

How to render multiple video streams to one window efficiently?

My goal is to render multiple video streams to one window, each video stream is decoded by a thread and decoded video (RGB32) is cached to a bitmap which later be rendered to a part of the window. ...
1
vote
0answers
196 views

CoCreateInstance of IWICImagingFactory

I am running Visual Studio 2012 on my Windows 7 machine. When I run the SimpleDirect2dApplication found here : http://technet.microsoft.com/en-us/subscriptions/dd940321%28v=vs.85%29.aspx hr = ...
0
votes
1answer
96 views

ID2D1Bitmap1::Map, when can you use it?

So I recently went through and converted a simple test app I wrote to use the new version of Direct2D, which means I basically copied the relevant parts of the Direct2D Quickstart for Windows 8. That ...
0
votes
1answer
222 views

How to save bmp file from ID2D1Bitmap

I am trying to create the bmp file from the live running video using Kinect. I am developing an application which is running the live video on top of that to place an image. The IDE which I am used is ...
0
votes
0answers
51 views

How to get the screen shot from ID2D1Bitmap*

I am trying to take the screen shot of the KINECT running video. The video which contains the overlayed image also. I am using Direct2D mechanism. I created two different bitmaps using ID2D1Bitmap for ...
0
votes
1answer
221 views

Direct2D Tutorial Window No-Show

I'm trying to use MSDN's Direct2D basic tutorial, but the window won't show up, it output's the normal debug info, but no window. I've tried playing about with the WinMain() parameters and the ...
0
votes
1answer
111 views

How to save the content of a ID2D1RenderTarget to a file

I have an existing component that draws Direct2D content to an ID2D1RenderTarget and I would like to save that drawing to an image file. The questions here, here and here, although they helped me, did ...
1
vote
0answers
154 views

Direct2D - Emulating Color Keyed Transparent Bitmaps

I'm currently updating a Windows GDI application to use Direct2D rendering and I need to support "transparent" bitmaps via color-keying for backwards compatibility. Right now I'm working with a HWND ...
0
votes
0answers
88 views

Apply ID2D1Effect above Direct3D render target

I have a question how to quickly apply ID2D1Effect above Direct3D render target view. I have managed to do using following code but it does not seem to work effectively: // get texture from Direct3D ...
1
vote
1answer
261 views

How to perform high quality bitmap scaling in Direct2D?

I am trying to move an application from GDI+ to Direct2D for performance reasons. Perviously I was using StretchBlt() in HALFTONE mode which gives great, but slow results. Now I am drawing in ...
1
vote
0answers
280 views

how to save bitmap to file using direct2d and ID2D1HwndRenderTarget

How to save ID2D1Bitmap to PNG file did not help me. I'm working with Direct2D. I want to save a ID2D1**Hwnd**RenderTarget *m_pRenderTarget to file as bmp or png etc. But the sample I found on MSDN ...
0
votes
1answer
82 views

Direct2D Sharable Resources

I saw an answer to this question: Do I need to recreate Direct2D sharable resources? , but I have some don't understand : the shared resource A was created by RT1 and used by RT2, what should I do to ...
1
vote
3answers
379 views

Will Direct 2D be better than Qt at rendering lines onto a off screen buffer

I have a data visualization application (Parallel Coordinates). This involves drawing loads of lines on screen. The application is for huge datasets. The test data set involves ~ 2.5M lines (2527700 ...
2
votes
1answer
113 views

Retrieve IDXGISurface used to create ID2D1RenderTarget

Let's say a render target was created via ID2D1Factory::CreateDxgiSurfaceRenderTarget. Then the render target was passed to my function. I only have the target and not the IDXGISurface. Is there a ...
1
vote
1answer
123 views

DirectX10 support in Firemonkey (not 10.1)

Is it possible to drop down to DX10 instead of DX10.1 support. I have a client whose computer supports DX10 only, so they can't take advantage of Direct2D as it seems that FM only supports 10.1 I ...
0
votes
2answers
115 views

Store resource in Direct2D on GPU

Is there some way to store a "scene" in Direct2D on the GPU? I'm looking for something like ID2D1Mesh (i.e. storing the resource in vector format, not as a bitmap) but where I can configure if the ...
0
votes
1answer
233 views

How to save a ID2D1Bitmap to a file using WIC?

I have a problem with saving a bitmap into a file. I'm using How to save ID2D1Bitmap to PNG file as a reference, but I have a different error than the one posted in that. I get error 0x88990015 ...
0
votes
1answer
95 views

ASSERT fail on creating D2D rendertarget

I am building a MFC c++ program. This program contains a class called faceTracking. This class normally had only one drawing job an thus I only passed on the MFC object it needed to draw to. This ...

1 2 3 4