繁体   English   中英

将TIFF转换为1bit

[英]Convert TIFF to 1bit

我写了一个桌面应用程序,它将8位TIFF转换为1位,但是无法在Photoshop(或其他图形软件)中打开输出文件。 该应用程序的作用是

  • 迭代原始图像的每8个字节(每个像素1个字节)
  • 然后将每个值转换为bool(所以0或1)
  • 每个字节保存8个像素-字节中的位与原始图像中的像素顺序相同

我设置的TIFF标签:MINISBLACK,压缩为NONE,填充顺序为MSB2LSB,平面配置是连续的。 我正在使用BitMiracle的LibTiff.NET读写文件。

无法用流行的软件打开输出,这是我做错了吗?

输入图片: http : //www.filedropper.com/input
输出图像: http : //www.filedropper.com/output

从对字节操作部分的描述看来,您正在正确地将图像数据从8位转换为1位。 如果是这样,并且您没有使用自己的代码从头开始执行此操作的特定原因,则可以使用System.Drawing.Bitmap和System.Drawing.Imaging.ImageCodecInfo简化创建有效TIFF文件的任务。 这使您可以保存未压缩的1位TIFF或具有不同压缩类型的压缩文件。 代码如下:

// first convert from byte[] to pointer
IntPtr pData = Marshal.AllocHGlobal(imgData.Length);
Marshal.Copy(imgData, 0, pData, imgData.Length);
int bytesPerLine = (imgWidth + 31) / 32 * 4; //stride must be a multiple of 4. Make sure the byte array already has enough padding for each scan line if needed
System.Drawing.Bitmap img = new Bitmap(imgWidth, imgHeight, bytesPerLine, PixelFormat.Format1bppIndexed, pData);

ImageCodecInfo TiffCodec = null;
foreach (ImageCodecInfo codec in ImageCodecInfo.GetImageEncoders())
   if (codec.MimeType == "image/tiff")
   {
      TiffCodec = codec;
      break;
   }
EncoderParameters parameters = new EncoderParameters(2);
parameters.Param[0] = new EncoderParameter(Encoder.Compression, (long)EncoderValue.CompressionLZW);
parameters.Param[1] = new EncoderParameter(Encoder.ColorDepth, (long)1);
img.Save("OnebitLzw.tif", TiffCodec, parameters);

parameters.Param[0] = new EncoderParameter(Encoder.Compression, (long)EncoderValue.CompressionCCITT4);
img.Save("OnebitFaxGroup4.tif", TiffCodec, parameters);

parameters.Param[0] = new EncoderParameter(Encoder.Compression, (long)EncoderValue.CompressionNone);
img.Save("OnebitUncompressed.tif", TiffCodec, parameters);

img.Dispose();
Marshal.FreeHGlobal(pData); //important to not get memory leaks

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM