Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
1k views

Windows 7: Saving as TIFF CCITT Group4 changed?

My program, that converts a multi page TIFF to PDF is not longer working under Windows 7. The program contains code that walks through the pages of the TIFF, converts each page as TIFF with CCITT ...
2
votes
2answers
483 views

What's the relationship between WIC and GDI+?

I'm fuzzy on the relationship between Windows Imaging Component (WIC) and GDI+. I've done some work in the past that showed that, for example, WIC produces visually superior GIF encodings, but I'm ...
1
vote
0answers
29 views

IWICFormatConverter: Converting from a format that supports transparency

I'm looking for a way to specify a background (matte) color to use when converting from a pixel format with transparency support to one without transparency support using Windows Imaging Components. ...
1
vote
1answer
90 views

How to convert WicImagingBitmap to Gdi+ Bitmap or a stream?

I'm a .net developer and I'm using WindowsAPICodePackage WIC to render images. I want to convert WIC ImagingBitmap to a gdi+ bitmap or to a MemoryStream instead using its own method "SaveToFile". Is ...
1
vote
1answer
480 views

How to Read Pixels in WIC image

The code below (from this thread: http://stackoverflow.com/questions/2405899/how-to-use-delphi-2010s-new-wic-capability-on-canon-files) opens a WIC image into a BitMap. However, if the dynamic range ...
1
vote
1answer
130 views

How to iterate all query paths within an image header namespace in WIC?

I am using Windows Imaging Component to read/write image metadata in my WPF application. I would like to know if there is an efficient way to know if any paths exist within a namespace. For instance I ...
1
vote
1answer
543 views

Windows Programming: ID2D1Bitmap Interface - Getting the Bitmap Data

I've been writing my own library of functions to access some of the new Direct2D Windows libraries. In particular, I've been working on the ID2D1Bitmap interface. I wanted to write a function to ...
1
vote
1answer
1k views

Using Image Source with big images in WPF

I am working on an application that allows users to manipulate multiple images by using ItemsControl. I started running some tests and found that the app has problems displaying some big images - ie. ...
1
vote
2answers
373 views

.NET Framework and Gif transparency

Before Windows 7 (and the new image codecs: WIC) I used the following (very fast but dirty) method to create a Gif encoded image with white as the transparent color: MemoryStream target = new ...
0
votes
1answer
39 views

Save normal map as 16bit texture with WIC

I have an art pipeline, which includes following steps: Normal map is generated. I want to save only X and Y components as unsigned bytes. Z is omitted because it is reconstructed in pixel shader. ...
0
votes
1answer
53 views

WINCODEC_ERR_WIN32ERROR 0x88982F94 when calling IWICComponentFactory.CreateBitmapFromMemory

I'm getting the following error when calling IWICComponentFactory.CreateBitmapFromMemory and passing it a pointer to Scan0 of a 32bppArgb GDI+ bitmap WINCODEC_ERR_WIN32ERROR 0x88982F94 Windows Codecs ...
0
votes
1answer
89 views

WICBitmapSource.CopyPixels to GDI Bitmap Scan0

I've modified the C# IWICBitmapSource.CopyPixels interface to allow both array marshaling and passing a pointer: void CopyPixels( WICRect prc, uint cbStride, uint ...
0
votes
2answers
60 views

Draw portion of image using WPF

I'm looking for the WPF analog of this method in System.Drawing: Graphics.DrawImage Method (Image, Rectangle, Rectangle, GraphicsUnit) Draws the specified portion of the specified Image at ...
0
votes
0answers
313 views

Animated GIF support in Windows Photo Viewer? [closed]

I've been doing a bit of research to find out why Windows 7 won't support animated GIF images in the photo viewer natively. People have suggested various third-party software (AKA not the built-in ...
0
votes
2answers
68 views

WindowsImagingComponent or System.Windows.Media.Imaging

I need to work with some bitmaps in managed code and save them as PNG files. Should I use Microsoft.WindowsAPICodePack.DirectX.WindowsImagingComponent, or System.Windows.Media.Imaging? They both seem ...
0
votes
0answers
70 views

How to extend IWICFormatConverter to support YCbCr to RGB with custom reference white point values?

This is a question about Windows Imaging Component. This question is about the interface design only. I already know the calculations from LibTIFF, SO, fourCC and Wikipedia. I need to implement the ...
0
votes
1answer
251 views

JPEG Extract DCT tables

I am developing an image viewer/editor using VS2008 ,MFC and WIC and I would like to recompress jpegs as closely (quality-wize) as possible to their original, after image processing. Does anyone know ...
0
votes
0answers
29 views

Difference between SetPreview and SetThumbnail on IWICBitmapEncoder interface

The IWICBitmapEncoder interface (part of Windows Imaging Component) contains two methods which sounds like similar: SetPreview and SetThumbnail. What is the difference? HRESULT SetPreview([in] ...
0
votes
1answer
208 views

Image metadata Keywords not recognized by Windows XP

I am using WIC (Windows Imaging Component) in my WPF application to read/write image metadata. Everything works perfect except for keywords not being recognized by Windows XP in the Summary properties ...
0
votes
2answers
745 views

How do I redistribute Windows Imaging Component with .NET Framework 2.0?

I have a .NET Framework 2.0 app and would like to use the Windows Imaging Component. Since my application is a WinForms app and will be redistributed to users via an MSI installer I'm trying to figure ...