Tagged Questions
2
votes
1answer
393 views
Converting pdf to tiff using C# .net 3.0 or less without 3rd party libraries?
There are several SO posts and googling which did not really help much with my question. So here I go again.
I need to convert a PDF to a single tiff image (multi-page tiff obviously). I have figured ...
0
votes
1answer
148 views
writeableImage bgr101010 not saving in 32bpp instead saves in 48bpp
Can someone please suggest how to save bgr101010 format .tiff file in 32bpp? My code is saving in 48bpp? Basically I want to save tiff a file with 10 bit color depth.
private void Bgr()
{
BitmapImage ...
0
votes
1answer
229 views
Creating tiff image at runtime in WPF
I'm trying to generate a simple tiff image at runtime. This image consists of white background and image downloaded from remote server.
Here's the code I've written for reaching that goal:
...
3
votes
1answer
479 views
Tiff images aren't showing actual size in WPF Image control
I've been working on a WPF application and need to be able to show multi-page tiffs at actual size as well as fit to screen. The code I have from another StackOverflow thread is working great for ...
3
votes
2answers
780 views
How do I handle a huge tif in WPF?
I have an 8bit tiff thats 14406x9606 pixels that when loaded via BitmapImage throws a System.OutOfMemoryException. As a full depth bitmap its about 400 megs in size. Is there a way to partition the ...
0
votes
2answers
1k views
How to convert PDF to TIF with GhostScript? [duplicate]
Possible Duplicate:
Best way to convert pdf files to tiff files
I'm looking for a free library that allows me to convert a PDF document to a (or several) TIFF images. If Tiff is not ...
1
vote
1answer
440 views
Simple WPF page selection for multipaged tiff
I am making a basic Tiff viewer and need to be able to select the page to be viewed. In Winforms I could use selectActiveFrame, so I was wondering if there is a WPF equivalent for this. Thanks!
EDIT: ...
4
votes
3answers
1k views
WPF BitmapImage and TIFF with CMYK + Alpha
I am using this code snippet to load various image files:
BitmapImage bitmap = new BitmapImage ();
bitmap.BeginInit ();
bitmap.UriSource = new System.Uri (path);
bitmap.CreateOptions = ...
1
vote
1answer
2k views
I need to view a Multipage TIFF in a WPF application
I need to view a multipage tiff with WPF.
I currently have the following:
<FlowDocumentReader>
<FlowDocument>
<BlockUIContainer>
<Image x:Name="DocImg" ...
1
vote
2answers
2k views
Load image into memory immediately
I need to open all frames from Tiff image in WPF into memory and then delete the source. And after that I eventually need to render that image (resized according to window size). My solution is quite ...
1
vote
1answer
6k views
How Do I Create a System.Windows.Media.ImageSource From a Byte Array?
How do I create a System.Windows.Media.ImageSource from a byte array?
I have a byte array, containing the exact and complete file contents of a TIFF image file. I need to display this on the ...
1
vote
1answer
1k views
Unable to retrieve TIFF pages from TiffBitmapDecoder.Frames — all frames are page 1
I'm trying to convert a multipage tiff image into a multipage XPS document. The problem I'm having is with the TiffBitmapDecoder and its BitmapFrames.
Here's the code:
private static void ...
2
votes
3answers
6k views
WPF: TIFF images with JPEG compression?
I have a large number of TIFF images that I’d need to use in a WPF program (.NET 3.5 SP1 specifically and using C#). Half of the TIFF files contain color images encoded using JPEG compression and they ...