0
votes
0answers
33 views
WMF / EMF File Format conversion C#
In my program, I have a requirement to "playback" or "parse" windows metafiles (WMF and EMF). I have dug through MSDN and Google, and the closest I have come is the Graphics. Enume …
1
vote
1answer
26 views
Win32 DrawText line height
I'm calling the Win32 DrawText function to output some text into a device context. The text is long and wraps nicely onto a second line. The problem is I need to decrease the spa …
1
vote
1answer
23 views
wxGraphicsContext dreadfully slow on Windows
I've implemented a plotter using wxGraphicsContext. The development was done using wxGTK, and the graphics was very fast.
Then I switched to Windows (XP) using wxWidgets 2.9.0. An …
0
votes
1answer
38 views
Remove alpha from a BitmapSource
Hello,
I use BitBlt() and CreateBitmapSourceFromHBitmap() to capture a window as a BitmapSource that I can display on an Image element in a WPF application. But for some reason, m …
0
votes
1answer
23 views
WPF Image won’t display BitmapSource
I'm new to using WPF and GDI, and I'm having trouble displaying an image. My eventual goal is to build something expose-like. So far, I gray-out the screens, gather all the active …
5
votes
4answers
117 views
Convert from 32-BPP to 8-BPP Indexed (C#)
I need to take a full color JPG Image and remap it's colors to a Indexed palette. The palette will consist of specific colors populated from a database. I need to map each color of …
1
vote
1answer
46 views
Double buffering in WPF?
hi guys,
I'm developing a graph control in WPF. I have previously developed it using GDI and C#.
i've used double buffering in previous control to avoid some issues related to red …
0
votes
1answer
34 views
Generating large amounts of PDF Docs from templetes
Where I work we get PDF templetes from our clients and we convert them into html templates that we can change out tokens in the page with other info and mail them out to their clie …
0
votes
2answers
28 views
Problem with WPF graph control
hi guys,
I've developed a graph control in GDI+ and used a timer in it.. now i'm converting it to
WPF. but when i went on and search for a timer there is no timers in WPF... how …
0
votes
0answers
36 views
GDI+ performance tricks
Does anyone know of any reliable (and, hopefully, extensive) books/websites that discuss GDI+ performance (beyond the obvious)?
For example, I recently came across this excellent …
0
votes
2answers
23 views
How do I use GDI+ to change the color of a line when it overlaps a region?
I'm using .NET GDI+ to draw a wavy line on a chart. (think sharetrading)
I want it to change color if the line goes above 90% or below 10%.
Any tips on how to get the color to ch …
1
vote
2answers
92 views
Move a bitmap around a window quickly in C++
I'm looking for some C++ code to let me quickly move a bitmap around a window, restoring the background as it moves. At present I capture the Window contents to a bitmap during the …
0
votes
2answers
54 views
Redirect hwnd GDI calls to system memory bitmap?
I have a 3rd party ActiveX control I want to render within other presentation technologies (Direct3D and WPF). To do this, I need the ActiveX to render to a system memory bitmap i …
0
votes
1answer
27 views
Correlating Windows forms textbox text width to GDI width
I'm drawing the text from a textbox using GDI; however, I'm trying to create my textbox such that it reflects the same amount of space that I am drawing to in GDI. So, for some X …
0
votes
1answer
36 views
With PHP/GD, how do I trim an image?
I want to mimic the trim behavior of Photoshop (crop the area that is covered by the same color on all sides) with GD and PHP but I'm lacking ideas on how to accomplish this.
If s …
