My application capture pictures' sequence from a live video.
It use Directshow interface ISampleGrabber
defined in Qedit.h
My question is :
How can my application draw caption text on top the pictures I record ?
The first idea was to take the data direct from the capture buffer
to record it first on a D3d9Surface with
D3DXLoadSurfaceFromMemory
BUT
the header file Qedit.h is not compatible with D3D headers later than version 7 and I did not find a function
like D3DXLoadSurfaceFromMemory for D3d7Surface ...
does it exist ?
The second idea was to draw caption text on top of the running live video, but how ?
Could someone help me, giving me perhaps a interesting links ?
It use Directshow interface ISampleGrabber
defined in Qedit.h
My question is :
How can my application draw caption text on top the pictures I record ?
The first idea was to take the data direct from the capture buffer
to record it first on a D3d9Surface with
D3DXLoadSurfaceFromMemory
BUT
the header file Qedit.h is not compatible with D3D headers later than version 7 and I did not find a function
like D3DXLoadSurfaceFromMemory for D3d7Surface ...
does it exist ?
The second idea was to draw caption text on top of the running live video, but how ?
Could someone help me, giving me perhaps a interesting links ?
Comment