1
vote
1answer
50 views

Quality of TIFF image opened on Win XP machine is poor

I've searched lots of webpages, forums and other resources over the web and these two simple lines of code still drive me crazy: Dim ImageFile As FileStream = ...
1
vote
2answers
563 views

Compare tiff and pdf files using vb.net

I am looking for sample code or a third party tools on VB, .Net environment, which can compare a tiff and a pdf files (visual comparison) and returns true or false. My requirement was to convert tiff ...
5
votes
7answers
3k views

Convert PDF to TIFF in-memory

I know a similar question has been asked several times on here but I cannot seem to find the ideal solution for my needs. So, here it goes At a high-level, I am looking for an assembly I can use to ...
0
votes
3answers
1k views

Convert PDF to TIFF Format

I am writting a VB.Net application. I need to be able to convert either a Word or PDF file to TIF format. Free would be nice but I will also accept low cost. I would like sample code if possible, ...
2
votes
1answer
2k views

Converting 24BPP to 4BPP with GDI+ in VB.NET

My VB.NET program currently takes a 4BPP TIFF as an Bitmap, converts it to a Graphic, adds some text strings and then saves it out again as a TIFF file. The output Bitmap.Save() TIFF file by default ...
3
votes
2answers
10k views

When creating an bitmap image from scratch in VB.Net, the quality stinks?

The Vb.Net application creates a bitmap from scratch and either converts to a tiff or sends it to a printer. In both cases, the quality of the image (in this case the font) is not good at all. The ...
2
votes
2answers
487 views

Creating tifs directly from VB.Net

The current applications uses .net printdocument to create print jobs which it sends to a standard printer. We use the blackice tif print driver to capture the output and manage it from there. The ...
1
vote
1answer
2k views

Opening/printing TIFF files in VB.NET Visual Studio 2005

I'm trying to use my existing application to open TIFF files for clients and staff in order to print or view the reports that we have scanned into our server. Unfortunately I have been unable to find ...
0
votes
2answers
750 views

How do I store TIFF files in Oracle?

I have an ASP.NET application (vb.net codebehind) that has serious performance problems because of its storage of TIFF files in one server share. There are over a million .TIF files there now! The ...
1
vote
2answers
5k views

Stream (and convert?) multi-page TIFF using ASP.NET

I have built a simple image viewer in .NET and have the requirement to display multi-frame TIFF images in the browser. Presently, I have a (ashx) handler setup to stream back JPEGs that are co-mingled ...
0
votes
1answer
3k views

Convert a multi page Tiff to jpeg in .Net1.1

Is there a way to convert a multi page Tiff file to a jpeg file in VB.net 1.1. I've tried to convert it with the standard Bitmap.Save() method but it only converts the first page.