L
Lee Gillie
I am reading a TIF file which is 24bpp, and writing a JPG which is also
found to be 24bpp with code very close to that shown below. In the
process the deep red TIF colors are being transformed into a ruddy rust
in the jpg, and the blue highlights are being subdued. Color is not
being transformed radically, such as green for red, for example, it is
more subtle. It is almost as if a tint were being applied. How can I
elminate this color transformation?
Dim InBmp As Bitmap = New Bitmap(InputFileName)
Dim OutBmp As Bitmap
OutBmp = New Bitmap(InBmp, Width, Height)
OutBmp.Save(mOutputFileName(idx), ImageFormat.Jpeg)
Any hints would be greatly appreciated.
found to be 24bpp with code very close to that shown below. In the
process the deep red TIF colors are being transformed into a ruddy rust
in the jpg, and the blue highlights are being subdued. Color is not
being transformed radically, such as green for red, for example, it is
more subtle. It is almost as if a tint were being applied. How can I
elminate this color transformation?
Dim InBmp As Bitmap = New Bitmap(InputFileName)
Dim OutBmp As Bitmap
OutBmp = New Bitmap(InBmp, Width, Height)
OutBmp.Save(mOutputFileName(idx), ImageFormat.Jpeg)
Any hints would be greatly appreciated.