TiffCompressOption 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定关于标记图像文件格式 (TIFF) 位图的可行压缩方案。
public enum class TiffCompressOption
public enum TiffCompressOption
type TiffCompressOption =
Public Enum TiffCompressOption
- 继承
字段
Ccitt3 | 2 | 使用 CCITT3 压缩方案。 |
Ccitt4 | 3 | 使用 CCITT4 压缩方案。 |
Default | 0 | TiffBitmapEncoder 编码器尝试使用最佳的可行压缩方案保存位图。 |
Lzw | 4 | 使用 LZW 压缩方案。 |
None | 1 | 不会压缩标记图像文件格式 (TIFF) 图像。 |
Rle | 5 | 使用 RLE 压缩方案。 |
Zip | 6 | 使用 Zip 压缩方案。 |
示例
下面的示例演示如何使用该 Compression 属性。
FileStream^ stream = gcnew FileStream("new.tif", FileMode::Create);
TiffBitmapEncoder^ encoder = gcnew TiffBitmapEncoder();
TextBlock^ myTextBlock = gcnew TextBlock();
myTextBlock->Text = "Codec Author is: " + encoder->CodecInfo->Author->ToString();
encoder->Compression = TiffCompressOption::Zip;
encoder->Frames->Add(BitmapFrame::Create(image));
encoder->Save(stream);
var stream = new FileStream("new.tif", FileMode.Create);
var encoder = new TiffBitmapEncoder();
var myTextBlock = new TextBlock();
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString();
encoder.Compression = TiffCompressOption.Zip;
encoder.Frames.Add(BitmapFrame.Create(image));
encoder.Save(stream);
Dim stream As New FileStream("new.tif", FileMode.Create)
Dim encoder As New TiffBitmapEncoder()
Dim myTextBlock As New TextBlock()
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString()
encoder.Compression = TiffCompressOption.Zip
encoder.Frames.Add(BitmapFrame.Create(image))
encoder.Save(stream)
注解
Ccitt3、Ccitt4 和 Rle 要求将 PixelFormat 值设置为 BlackWhite。 PixelFormat将设置为任何其他值会将Compression属性值重置为默认值。