0
votes
1answer
10 views
how to display IBitmapImage on CDC
What is the best way to display IBitmapImage on a device context. I am using Windows CE 6.0.
void CImaginingTestView::OnDraw(CDC* pDC)
{
CImaginingTestDoc* pDoc = GetDocument( …
1
vote
1answer
79 views
IImage* from IBitmapImage*
I'm using the Imaging API to basically write a rescaling function using the Imaging built-in Resize function.
I need to feed a custom UBitmap class that it's constructed with an I …
4
votes
2answers
137 views
Pygame and blitting: white on white = gray?
I'm using pygame (1.9.0rc3, though this also happens in 1.8.1) to create a heatmap. To build the heatmap, I use a small, 24-bit 11x11px dot PNG image with a white background and a …
0
votes
3answers
540 views
Save WPF image with Shader effects applied
I have a WPF Image control with attached blur effect.
Is there a way to save the image (with blur) without using RenderTargetBitmap?
Thank you.
UPDATE: I'm using now new custom …
0
votes
2answers
32 views
Printing a WPF BitmapImage
What's the best way to print a BitmapImage? I come from a background in System.Drawing so I was thinking about converting it to a Bitmap and then printing it, but I'm thinking the …
0
votes
1answer
35 views
Image format question
Hey there,
I'm using an image loader (DevIL) for image loading. Im just wondering if the image format (the uncompressed format in memory) loaded from files (.jpg, .png, .bmp etc) …
0
votes
1answer
40 views
rounded corner control
I'm looking for a .net imaging control to use in a generic handler to process images. Right now I'm using OnlineImageOptimizer, which is a great component for resizing on the fly. …
8
votes
6answers
173 views
Python imaging alternatives
I have python code that needs to do just a couple simple things to photographs: crop, resize, and overlay a watermark. I've used PIL, and the resample/resize results are TERRIBLE. …
0
votes
4answers
294 views
Generate image file with low bit depths?
bpp = bits per pixel, so 32bpp means 8/8/8/8 for R/G/B/A.
Like .NET has an enum for these "System.Drawing.Imaging.PixelFormat".
Now once I have a Bitmap or Image object with my g …
1
vote
3answers
672 views
How to calculate the average rgb color values of a bitmap
In my C# (3.5) application I need to get the average color values for the red, green and blue channels of a bitmap. Preferably without using an external library. Can this be done? …
0
votes
4answers
91 views
Image Property Tag Constant
I'd like to use the image property tag constants defined in GDI+ from .NET.
I wonder whether these constant values (e.g. PropertyTagGpsVer constant) are exposed in any of the Base …
3
votes
2answers
288 views
How do you specify the specific Group 3 tiff compression?
Group 3 compress has 2 variations (Group 3 1D and Group 3 2D). When saving an image in Tiff format, there is only one option for Group 3 in the EncoderValue enumeration. Is there a …
2
votes
2answers
272 views
Find an image in an image C#
Hi
I have a scan of a document (a form actually) filled with some handwritten infos.
I have a bitmap of the form empty.
how can i "cancel" the printed form to extract the handwr …
1
vote
3answers
457 views
How to save an EXIF format image file in .NET 3.5
I want to save an image in EXIF format using System.Drawing.Image.Save or a similar method in a C# application using .NET framework v3.5. The MSDN documentation lists EXIF as an o …
0
votes
0answers
542 views
What are the Silverlight 3 alternatives to DynamicResource and Element-based Brushes?
I need to have a custom UI element that can be changed, such as the colour and text used in the application but as a resource - in WPF I can use a DynamicResource to assign brushes …
