Tagged Questions
2
votes
3answers
824 views
.NET Multipage Tiff with Lossy Compression
I need a way to take several jpgs and convert them into a single multi page Tiff. I have that working using GDI+ however it only works with the compression LZW which is lossless. This means that my ...
1
vote
2answers
1k views
Generating a multipage tiff is not working
I'm trying to generate a multipage TIFF file from an existing picture using code by Bob Powell:
picture.SelectActiveFrame(FrameDimension.Page, 0);
var image = new Bitmap(picture);
using (var stream = ...
1
vote
1answer
773 views
Problem printing multipages ListView in C#. Can't figure it out
I am having an issue printing listView items.
the problem I think is at private void PrintPageDetail(PrintPageEventArgs e)
So this is what's going on:
it prints whatever fits on one page over and ...