2
votes
1answer
44 views
Does there exist a digital image steganography algorithm which would be resistant to image manipulation?
I'm wondering - is there a steganography solution for digital images which is resistant to image manipulations? With "manipulations" I mean the most standard operations - recompressing JPEGs (or even …
0
votes
2answers
22 views
Converting RGB images to CMYK in .net [closed]
Possible Duplicate:
.NET TIFF file: RGB >> CMYK conversion possible without 3rd party lib?
Hi,
I'd have a library of jpg images on my site that I would like to convert to CMYK TIFF …
0
votes
1answer
12 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
80 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 Image* pointer with …
4
votes
2answers
143 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 very low-opacity …
0
votes
3answers
555 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 effect which derives …
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 there's probably a …
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) is determined by …
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.
What I would love …
8
votes
6answers
175 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. I've used …
0
votes
4answers
302 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 graphics, how would I …
1
vote
3answers
707 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? If so, how? Thanks …
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 Class Library?
I …
3
votes
2answers
293 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 separate parameter …
2
votes
2answers
277 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 handwritting only.
I use …
