pdf-thumb 0.1.0

PDF thumbnail image generator for Windows
Documentation
use windows::core::GUID;

/// See [Built in CLSIDs](https://learn.microsoft.com/en-us/windows/win32/wic/-wic-guids-clsids#built-in-clsids).
pub const PNG_ENCORDER_ID: GUID = GUID {
    data1: 0x27949969,
    data2: 0x876a,
    data3: 0x41d7,
    data4: [0x94, 0x47, 0x56, 0x8f, 0x6a, 0x35, 0xa4, 0xdc],
};

pub const BITMAP_ENCODER_ID: GUID = GUID {
    data1: 0x69be8bb4,
    data2: 0xd66d,
    data3: 0x47c8,
    data4: [0x86, 0x5a, 0xed, 0x15, 0x89, 0x43, 0x37, 0x82],
};

pub const JPEG_ENCORDER_ID: GUID = GUID {
    data1: 0x1a34f5c1,
    data2: 0x4a5a,
    data3: 0x46dc,
    data4: [0xb6, 0x44, 0x1f, 0x45, 0x67, 0xe7, 0xa6, 0x76],
};

pub const TIFF_ENCODER_ID: GUID = GUID {
    data1: 0x0131be10,
    data2: 0x2001,
    data3: 0x4c5f,
    data4: [0xa9, 0xb0, 0xcc, 0x88, 0xfa, 0xb6, 0x4c, 0xe8],
};

pub const GIF_ENCODER_ID: GUID = GUID {
    data1: 0x114f5598,
    data2: 0xb22,
    data3: 0x40a0,
    data4: [0x86, 0xa1, 0xc8, 0x3e, 0xa4, 0x95, 0xad, 0xbd],
};