0

I have a Silverlight application wherein I want to convert colored TIFF image with LZW compression into black and white image with CCITT4 compression.

Bobrovsky
  • 13,789
  • 19
  • 80
  • 130
404
  • 11
  • 4

1 Answers1

0

There is a sample that shows how to Convert System.Drawing.Bitmap to a black and white TIFF.

You should get what you want if you combine the sample above with the answer that shows how to convert a Silverlight image to bytes.

Bobrovsky
  • 13,789
  • 19
  • 80
  • 130
  • First sample is written in C# and I find it hard to convert it to Silverlight code. I am trying to replace Bitmap class by WritableBitmap. Will that help?? – 404 Mar 31 '14 at 06:18