| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | #if !defined(_VISUALC_) |
|---|
| 50 | #include <magick/magick-config.h> |
|---|
| 51 | #endif |
|---|
| 52 | #include <stdio.h> |
|---|
| 53 | #include <stdlib.h> |
|---|
| 54 | #include <string.h> |
|---|
| 55 | #include <sys/types.h> |
|---|
| 56 | #if defined(_VISUALC_) |
|---|
| 57 | #include <stdlib.h> |
|---|
| 58 | #include <sys\types.h> |
|---|
| 59 | #endif |
|---|
| 60 | #include <time.h> |
|---|
| 61 | #include <wand/MagickWand.h> |
|---|
| 62 | |
|---|
| 63 | #define WandDelay 3 |
|---|
| 64 | |
|---|
| 65 | int main(int argc,char **argv) |
|---|
| 66 | { |
|---|
| 67 | #define ThrowAPIException(wand) \ |
|---|
| 68 | { \ |
|---|
| 69 | description=MagickGetException(wand,&severity); \ |
|---|
| 70 | (void) fprintf(stderr,"%s %s %lu %s\n",GetMagickModule(),description); \ |
|---|
| 71 | description=(char *) MagickRelinquishMemory(description); \ |
|---|
| 72 | exit(-1); \ |
|---|
| 73 | } |
|---|
| 74 | |
|---|
| 75 | static char |
|---|
| 76 | CustomOption[] = "custom option", |
|---|
| 77 | CustomProperty[] = "custom profile"; |
|---|
| 78 | |
|---|
| 79 | static unsigned char |
|---|
| 80 | sRGBProfile[] = |
|---|
| 81 | { |
|---|
| 82 | 0x00, 0x00, 0x0c, 0x48, 0x4c, 0x69, 0x6e, 0x6f, 0x02, 0x10, 0x00, |
|---|
| 83 | 0x00, 0x6d, 0x6e, 0x74, 0x72, 0x52, 0x47, 0x42, 0x20, 0x58, 0x59, |
|---|
| 84 | 0x5a, 0x20, 0x07, 0xce, 0x00, 0x02, 0x00, 0x09, 0x00, 0x06, 0x00, |
|---|
| 85 | 0x31, 0x00, 0x00, 0x61, 0x63, 0x73, 0x70, 0x4d, 0x53, 0x46, 0x54, |
|---|
| 86 | 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x43, 0x20, 0x73, 0x52, 0x47, |
|---|
| 87 | 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 88 | 0x00, 0x00, 0x00, 0x00, 0xf6, 0xd6, 0x00, 0x01, 0x00, 0x00, 0x00, |
|---|
| 89 | 0x00, 0xd3, 0x2d, 0x48, 0x50, 0x20, 0x20, 0x00, 0x00, 0x00, 0x00, |
|---|
| 90 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 91 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 92 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 93 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, |
|---|
| 94 | 0x63, 0x70, 0x72, 0x74, 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x00, |
|---|
| 95 | 0x33, 0x64, 0x65, 0x73, 0x63, 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, |
|---|
| 96 | 0x00, 0x6c, 0x77, 0x74, 0x70, 0x74, 0x00, 0x00, 0x01, 0xf0, 0x00, |
|---|
| 97 | 0x00, 0x00, 0x14, 0x62, 0x6b, 0x70, 0x74, 0x00, 0x00, 0x02, 0x04, |
|---|
| 98 | 0x00, 0x00, 0x00, 0x14, 0x72, 0x58, 0x59, 0x5a, 0x00, 0x00, 0x02, |
|---|
| 99 | 0x18, 0x00, 0x00, 0x00, 0x14, 0x67, 0x58, 0x59, 0x5a, 0x00, 0x00, |
|---|
| 100 | 0x02, 0x2c, 0x00, 0x00, 0x00, 0x14, 0x62, 0x58, 0x59, 0x5a, 0x00, |
|---|
| 101 | 0x00, 0x02, 0x40, 0x00, 0x00, 0x00, 0x14, 0x64, 0x6d, 0x6e, 0x64, |
|---|
| 102 | 0x00, 0x00, 0x02, 0x54, 0x00, 0x00, 0x00, 0x70, 0x64, 0x6d, 0x64, |
|---|
| 103 | 0x64, 0x00, 0x00, 0x02, 0xc4, 0x00, 0x00, 0x00, 0x88, 0x76, 0x75, |
|---|
| 104 | 0x65, 0x64, 0x00, 0x00, 0x03, 0x4c, 0x00, 0x00, 0x00, 0x86, 0x76, |
|---|
| 105 | 0x69, 0x65, 0x77, 0x00, 0x00, 0x03, 0xd4, 0x00, 0x00, 0x00, 0x24, |
|---|
| 106 | 0x6c, 0x75, 0x6d, 0x69, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, |
|---|
| 107 | 0x14, 0x6d, 0x65, 0x61, 0x73, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, |
|---|
| 108 | 0x00, 0x24, 0x74, 0x65, 0x63, 0x68, 0x00, 0x00, 0x04, 0x30, 0x00, |
|---|
| 109 | 0x00, 0x00, 0x0c, 0x72, 0x54, 0x52, 0x43, 0x00, 0x00, 0x04, 0x3c, |
|---|
| 110 | 0x00, 0x00, 0x08, 0x0c, 0x67, 0x54, 0x52, 0x43, 0x00, 0x00, 0x04, |
|---|
| 111 | 0x3c, 0x00, 0x00, 0x08, 0x0c, 0x62, 0x54, 0x52, 0x43, 0x00, 0x00, |
|---|
| 112 | 0x04, 0x3c, 0x00, 0x00, 0x08, 0x0c, 0x74, 0x65, 0x78, 0x74, 0x00, |
|---|
| 113 | 0x00, 0x00, 0x00, 0x43, 0x6f, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, |
|---|
| 114 | 0x74, 0x20, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x38, 0x20, |
|---|
| 115 | 0x48, 0x65, 0x77, 0x6c, 0x65, 0x74, 0x74, 0x2d, 0x50, 0x61, 0x63, |
|---|
| 116 | 0x6b, 0x61, 0x72, 0x64, 0x20, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, |
|---|
| 117 | 0x79, 0x00, 0x00, 0x64, 0x65, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, |
|---|
| 118 | 0x00, 0x00, 0x00, 0x12, 0x73, 0x52, 0x47, 0x42, 0x20, 0x49, 0x45, |
|---|
| 119 | 0x43, 0x36, 0x31, 0x39, 0x36, 0x36, 0x2d, 0x32, 0x2e, 0x31, 0x00, |
|---|
| 120 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, |
|---|
| 121 | 0x73, 0x52, 0x47, 0x42, 0x20, 0x49, 0x45, 0x43, 0x36, 0x31, 0x39, |
|---|
| 122 | 0x36, 0x36, 0x2d, 0x32, 0x2e, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 123 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 124 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 125 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 126 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 127 | 0x00, 0x58, 0x59, 0x5a, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 128 | 0xf3, 0x51, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x16, 0xcc, 0x58, |
|---|
| 129 | 0x59, 0x5a, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 130 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x59, 0x5a, |
|---|
| 131 | 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0xa2, 0x00, 0x00, |
|---|
| 132 | 0x38, 0xf5, 0x00, 0x00, 0x03, 0x90, 0x58, 0x59, 0x5a, 0x20, 0x00, |
|---|
| 133 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x62, 0x99, 0x00, 0x00, 0xb7, 0x85, |
|---|
| 134 | 0x00, 0x00, 0x18, 0xda, 0x58, 0x59, 0x5a, 0x20, 0x00, 0x00, 0x00, |
|---|
| 135 | 0x00, 0x00, 0x00, 0x24, 0xa0, 0x00, 0x00, 0x0f, 0x84, 0x00, 0x00, |
|---|
| 136 | 0xb6, 0xcf, 0x64, 0x65, 0x73, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 137 | 0x00, 0x00, 0x16, 0x49, 0x45, 0x43, 0x20, 0x68, 0x74, 0x74, 0x70, |
|---|
| 138 | 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x65, 0x63, 0x2e, |
|---|
| 139 | 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 140 | 0x00, 0x00, 0x16, 0x49, 0x45, 0x43, 0x20, 0x68, 0x74, 0x74, 0x70, |
|---|
| 141 | 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x69, 0x65, 0x63, 0x2e, |
|---|
| 142 | 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 143 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 144 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 145 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 146 | 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x73, 0x63, 0x00, 0x00, 0x00, |
|---|
| 147 | 0x00, 0x00, 0x00, 0x00, 0x2e, 0x49, 0x45, 0x43, 0x20, 0x36, 0x31, |
|---|
| 148 | 0x39, 0x36, 0x36, 0x2d, 0x32, 0x2e, 0x31, 0x20, 0x44, 0x65, 0x66, |
|---|
| 149 | 0x61, 0x75, 0x6c, 0x74, 0x20, 0x52, 0x47, 0x42, 0x20, 0x63, 0x6f, |
|---|
| 150 | 0x6c, 0x6f, 0x75, 0x72, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x20, |
|---|
| 151 | 0x2d, 0x20, 0x73, 0x52, 0x47, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 152 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x49, 0x45, 0x43, 0x20, |
|---|
| 153 | 0x36, 0x31, 0x39, 0x36, 0x36, 0x2d, 0x32, 0x2e, 0x31, 0x20, 0x44, |
|---|
| 154 | 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x52, 0x47, 0x42, 0x20, |
|---|
| 155 | 0x63, 0x6f, 0x6c, 0x6f, 0x75, 0x72, 0x20, 0x73, 0x70, 0x61, 0x63, |
|---|
| 156 | 0x65, 0x20, 0x2d, 0x20, 0x73, 0x52, 0x47, 0x42, 0x00, 0x00, 0x00, |
|---|
| 157 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 158 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x73, |
|---|
| 159 | 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x52, 0x65, |
|---|
| 160 | 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x56, 0x69, 0x65, |
|---|
| 161 | 0x77, 0x69, 0x6e, 0x67, 0x20, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, |
|---|
| 162 | 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x49, 0x45, 0x43, 0x36, |
|---|
| 163 | 0x31, 0x39, 0x36, 0x36, 0x2d, 0x32, 0x2e, 0x31, 0x00, 0x00, 0x00, |
|---|
| 164 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x52, 0x65, |
|---|
| 165 | 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x56, 0x69, 0x65, |
|---|
| 166 | 0x77, 0x69, 0x6e, 0x67, 0x20, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, |
|---|
| 167 | 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x49, 0x45, 0x43, 0x36, |
|---|
| 168 | 0x31, 0x39, 0x36, 0x36, 0x2d, 0x32, 0x2e, 0x31, 0x00, 0x00, 0x00, |
|---|
| 169 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 170 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 171 | 0x00, 0x76, 0x69, 0x65, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, |
|---|
| 172 | 0xa4, 0xfe, 0x00, 0x14, 0x5f, 0x2e, 0x00, 0x10, 0xcf, 0x14, 0x00, |
|---|
| 173 | 0x03, 0xed, 0xcc, 0x00, 0x04, 0x13, 0x0b, 0x00, 0x03, 0x5c, 0x9e, |
|---|
| 174 | 0x00, 0x00, 0x00, 0x01, 0x58, 0x59, 0x5a, 0x20, 0x00, 0x00, 0x00, |
|---|
| 175 | 0x00, 0x00, 0x4c, 0x09, 0x56, 0x00, 0x50, 0x00, 0x00, 0x00, 0x57, |
|---|
| 176 | 0x1f, 0xe7, 0x6d, 0x65, 0x61, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 177 | 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|---|
| 178 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, |
|---|
| 179 | 0x8f, 0x00, 0x00, 0x00, 0x02, 0x73, 0x69, 0x67, 0x20, 0x00, 0x00, |
|---|
| 180 | 0x00, 0x00, 0x43, 0x52, 0x54, 0x20, 0x63, 0x75, 0x72, 0x76, 0x00, |
|---|
| 181 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x05, |
|---|
| 182 | 0x00, 0x0a, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x19, 0x00, 0x1e, 0x00, |
|---|
| 183 | 0x23, 0x00, 0x28, 0x00, 0x2d, 0x00, 0x32, 0x00, 0x37, 0x00, 0x3b, |
|---|
| 184 | 0x00, 0x40, 0x00, 0x45, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x54, 0x00, |
|---|
| 185 | 0x59, 0x00, 0x5e, 0x00, 0x63, 0x00, 0x68, 0x00, 0x6d, 0x00, 0x72, |
|---|
| 186 | 0x00, 0x77, 0x00, 0x7c, 0x00, 0x81, 0x00, 0x86, 0x00, 0x8b, 0x00, |
|---|
| 187 | 0x90, 0x00, 0x95, 0x00, 0x9a, 0x00, 0x9f, 0x00, 0xa4, 0x00, 0xa9, |
|---|
| 188 | 0x00, 0xae, 0x00, 0xb2, 0x00, 0xb7, 0x00, 0xbc, 0x00, 0xc1, 0x00, |
|---|
| 189 | 0xc6, 0x00, 0xcb, 0x00, 0xd0, 0x00, 0xd5, 0x00, 0xdb, 0x00, 0xe0, |
|---|
| 190 | 0x00, 0xe5, 0x00, 0xeb, 0x00, 0xf0, 0x00, 0xf6, 0x00, 0xfb, 0x01, |
|---|
| 191 | 0x01, 0x01, 0x07, 0x01, 0x0d, 0x01, 0x13, 0x01, 0x19, 0x01, 0x1f, |
|---|
| 192 | 0x01, 0x25, 0x01, 0x2b, 0x01, 0x32, 0x01, 0x38, 0x01, 0x3e, 0x01, |
|---|
| 193 | 0x45, 0x01, 0x4c, 0x01, 0x52, 0x01, 0x59, 0x01, 0x60, 0x01, 0x67, |
|---|
| 194 | 0x01, 0x6e, 0x01, 0x75, 0x01, 0x7c, 0x01, 0x83, 0x01, 0x8b, 0x01, |
|---|
| 195 | 0x92, 0x01, 0x9a, 0x01, 0xa1, 0x01, 0xa9, 0x01, 0xb1, 0x01, 0xb9, |
|---|
| 196 | 0x01, 0xc1, 0x01, 0xc9, 0x01, 0xd1, 0x01, 0xd9, 0x01, 0xe1, 0x01, |
|---|
| 197 | 0xe9, 0x01, 0xf2, 0x01, 0xfa, 0x02, 0x03, 0x02, 0x0c, 0x02, 0x14, |
|---|
| 198 | 0x02, 0x1d, 0x02, 0x26, 0x02, 0x2f, 0x02, 0x38, 0x02, 0x41, 0x02, |
|---|
| 199 | 0x4b, 0x02, 0x54, 0x02, 0x5d, 0x02, 0x67, 0x02, 0x71, 0x02, 0x7a, |
|---|
| 200 | 0x02, 0x84, 0x02, 0x8e, 0x02, 0x98, 0x02, 0xa2, 0x02, 0xac, 0x02, |
|---|
| 201 | 0xb6, 0x02, 0xc1, 0x02, 0xcb, 0x02, 0xd5, 0x02, 0xe0, 0x02, 0xeb, |
|---|
| 202 | 0x02, 0xf5, 0x03, 0x00, 0x03, 0x0b, 0x03, 0x16, 0x03, 0x21, 0x03, |
|---|
| 203 | 0x2d, 0x03, 0x38, 0x03, 0x43, 0x03, 0x4f, 0x03, 0x5a, 0x03, 0x66, |
|---|
| 204 | 0x03, 0x72, 0x03, 0x7e, 0x03, 0x8a, 0x03, 0x96, 0x03, 0xa2, 0x03, |
|---|
| 205 | 0xae, 0x03, 0xba, 0x03, 0xc7, 0x03, 0xd3, 0x03, 0xe0, 0x03, 0xec, |
|---|
| 206 | 0x03, 0xf9, 0x04, 0x06, 0x04, 0x13, 0x04, 0x20, 0x04, 0x2d, 0x04, |
|---|
| 207 | 0x3b, 0x04, 0x48, 0x04, 0x55, 0x04, 0x63, 0x04, 0x71, 0x04, 0x7e, |
|---|
| 208 | 0x04, 0x8c, 0x04, 0x9a, 0x04, 0xa8, 0x04, 0xb6, 0x04, 0xc4, 0x04, |
|---|
| 209 | 0xd3, 0x04, 0xe1, 0x04, 0xf0, 0x04, 0xfe, 0x05, 0x0d, 0x05, 0x1c, |
|---|
| 210 | 0x05, 0x2b, 0x05, 0x3a, 0x05, 0x49, 0x05, 0x58, 0x05, 0x67, 0x05, |
|---|
| 211 | 0x77, 0x05, 0x86, 0x05, 0x96, 0x05, 0xa6, 0x05, 0xb5, 0x05, 0xc5, |
|---|
| 212 | 0x05, 0xd5, 0x05, 0xe5, 0x05, 0xf6, 0x06, 0x06, 0x06, 0x16, 0x06, |
|---|
| 213 | 0x27, 0x06, 0x37, 0x06, 0x48, 0x06, 0x59, 0x06, 0x6a, 0x06, 0x7b, |
|---|
| 214 | 0x06, 0x8c, 0x06, 0x9d, 0x06, 0xaf, 0x06, 0xc0, 0x06, 0xd1, 0x06, |
|---|
| 215 | 0xe3, 0x06, 0xf5, 0x07, 0x07, 0x07, 0x19, 0x07, 0x2b, 0x07, 0x3d, |
|---|
| 216 | 0x07, 0x4f, 0x07, 0x61, 0x07, 0x74, 0x07, 0x86, 0x07, 0x99, 0x07, |
|---|
| 217 | 0xac, 0x07, 0xbf, 0x07, 0xd2, 0x07, 0xe5, 0x07, 0xf8, 0x08, 0x0b, |
|---|
| 218 | 0x08, 0x1f, 0x08, 0x32, 0x08, 0x46, 0x08, 0x5a, 0x08, 0x6e, 0x08, |
|---|
| 219 | 0x82, 0x08, 0x96, 0x08, 0xaa, 0x08, 0xbe, 0x08, 0xd2, 0x08, 0xe7, |
|---|
| 220 | 0x08, 0xfb, 0x09, 0x10, 0x09, 0x25, 0x09, 0x3a, 0x09, 0x4f, 0x09, |
|---|
| 221 | 0x64, 0x09, 0x79, 0x09, 0x8f, 0x09, 0xa4, 0x09, 0xba, 0x09, 0xcf, |
|---|
| 222 | 0x09, 0xe5, 0x09, 0xfb, 0x0a, 0x11, 0x0a, 0x27, 0x0a, 0x3d, 0x0a, |
|---|
| 223 | 0x54, 0x0a, 0x6a, 0x0a, 0x81, 0x0a, 0x98, 0x0a, 0xae, 0x0a, 0xc5, |
|---|
| 224 | 0x0a, 0xdc, 0x0a, 0xf3, 0x0b, 0x0b, 0x0b, 0x22, 0x0b, 0x39, 0x0b, |
|---|
| 225 | 0x51, 0x0b, 0x69, 0x0b, 0x80, 0x0b, 0x98, 0x0b, 0xb0, 0x0b, 0xc8, |
|---|
| 226 | 0x0b, 0xe1, 0x0b, 0xf9, 0x0c, 0x12, 0x0c, 0x2a, 0x0c, 0x43, 0x0c, |
|---|
| 227 | 0x5c, 0x0c, 0x75, 0x0c, 0x8e, 0x0c, 0xa7, 0x0c, 0xc0, 0x0c, 0xd9, |
|---|
| 228 | 0x0c, 0xf3, 0x0d, 0x0d, 0x0d, 0x26, 0x0d, 0x40, 0x0d, 0x5a, 0x0d, |
|---|
| 229 | 0x74, 0x0d, 0x8e, 0x0d, 0xa9, 0x0d, 0xc3, 0x0d, 0xde, 0x0d, 0xf8, |
|---|
| 230 | 0x0e, 0x13, 0x0e, 0x2e, 0x0e, 0x49, 0x0e, 0x64, 0x0e, 0x7f, 0x0e, |
|---|
| 231 | 0x9b, 0x0e, 0xb6, 0x0e, 0xd2, 0x0e, 0xee, 0x0f, 0x09, 0x0f, 0x25, |
|---|
| 232 | 0x0f, 0x41, 0x0f, 0x5e, 0x0f, 0x7a, 0x0f, 0x96, 0x0f, 0xb3, 0x0f, |
|---|
| 233 | 0xcf, 0x0f, 0xec, 0x10, 0x09, 0x10, 0x26, 0x10, 0x43, 0x10, 0x61, |
|---|
| 234 | 0x10, 0x7e, 0x10, 0x9b, 0x10, 0xb9, 0x10, 0xd7, 0x10, 0xf5, 0x11, |
|---|
| 235 | 0x13, 0x11, 0x31, 0x11, 0x4f, 0x11, 0x6d, 0x11, 0x8c, 0x11, 0xaa, |
|---|
| 236 | 0x11, 0xc9, 0x11, 0xe8, 0x12, 0x07, 0x12, 0x26, 0x12, 0x45, 0x12, |
|---|
| 237 | 0x64, 0x12, 0x84, 0x12, 0xa3, 0x12, 0xc3, 0x12, 0xe3, 0x13, 0x03, |
|---|
| 238 | 0x13, 0x23, 0x13, 0x43, 0x13, 0x63, 0x13, 0x83, 0x13, 0xa4, 0x13, |
|---|
| 239 | 0xc5, 0x13, 0xe5, 0x14, 0x06, 0x14, 0x27, 0x14, 0x49, 0x14, 0x6a, |
|---|
| 240 | 0x14, 0x8b, 0x14, 0xad, 0x14, 0xce, 0x14, 0xf0, 0x15, 0x12, 0x15, |
|---|
| 241 | 0x34, 0x15, 0x56, 0x15, 0x78, 0x15, 0x9b, 0x15, 0xbd, 0x15, 0xe0, |
|---|
| 242 | 0x16, 0x03, 0x16, 0x26, 0x16, 0x49, 0x16, 0x6c, 0x16, 0x8f, 0x16, |
|---|
| 243 | 0xb2, 0x16, 0xd6, 0x16, 0xfa, 0x17, 0x1d, 0x17, 0x41, 0x17, 0x65, |
|---|
| 244 | 0x17, 0x89, 0x17, 0xae, 0x17, 0xd2, 0x17, 0xf7, 0x18, 0x1b, 0x18, |
|---|
| 245 | 0x40, 0x18, 0x65, 0x18, 0x8a, 0x18, 0xaf, 0x18, 0xd5, 0x18, 0xfa, |
|---|
| 246 | 0x19, 0x20, 0x19, 0x45, 0x19, 0x6b, 0x19, 0x91, 0x19, 0xb7, 0x19, |
|---|
| 247 | 0xdd, 0x1a, 0x04, 0x1a, 0x2a, 0x1a, 0x51, 0x1a, 0x77, 0x1a, 0x9e, |
|---|
| 248 | 0x1a, 0xc5, 0x1a, 0xec, 0x1b, 0x14, 0x1b, 0x3b, 0x1b, 0x63, 0x1b, |
|---|
| 249 | 0x8a, 0x1b, 0xb2, 0x1b, 0xda, 0x1c, 0x02, 0x1c, 0x2a, 0x1c, 0x52, |
|---|
| 250 | 0x1c, 0x7b, 0x1c, 0xa3, 0x1c, 0xcc, 0x1c, 0xf5, 0x1d, 0x1e, 0x1d, |
|---|
| 251 | 0x47, 0x1d, 0x70, 0x1d, 0x99, 0x1d, 0xc3, 0x1d, 0xec, 0x1e, 0x16, |
|---|
| 252 | 0x1e, 0x40, 0x1e, 0x6a, 0x1e, 0x94, 0x1e, 0xbe, 0x1e, 0xe9, 0x1f, |
|---|
| 253 | 0x13, 0x1f, 0x3e, 0x1f, 0x69, 0x1f, 0x94, 0x1f, 0xbf, 0x1f, 0xea, |
|---|
| 254 | 0x20, 0x15, 0x20, 0x41, 0x20, 0x6c, 0x20, 0x98, 0x20, 0xc4, 0x20, |
|---|
| 255 | 0xf0, 0x21, 0x1c, 0x21, 0x48, 0x21, 0x75, 0x21, 0xa1, 0x21, 0xce, |
|---|
| 256 | 0x21, 0xfb, 0x22, 0x27, 0x22, 0x55, 0x22, 0x82, 0x22, 0xaf, 0x22, |
|---|
| 257 | 0xdd, 0x23, 0x0a, 0x23, 0x38, 0x23, 0x66, 0x23, 0x94, 0x23, 0xc2, |
|---|
| 258 | 0x23, 0xf0, 0x24, 0x1f, 0x24, 0x4d, 0x24, 0x7c, 0x24, 0xab, 0x24, |
|---|
| 259 | 0xda, 0x25, 0x09, 0x25, 0x38, 0x25, 0x68, 0x25, 0x97, 0x25, 0xc7, |
|---|
| 260 | 0x25, 0xf7, 0x26, 0x27, 0x26, 0x57, 0x26, 0x87, 0x26, 0xb7, 0x26, |
|---|
| 261 | 0xe8, 0x27, 0x18, 0x27, 0x49, 0x27, 0x7a, 0x27, 0xab, 0x27, 0xdc, |
|---|
| 262 | 0x28, 0x0d, 0x28, 0x3f, 0x28, 0x71, 0x28, 0xa2, 0x28, 0xd4, 0x29, |
|---|
| 263 | 0x06, 0x29, 0x38, 0x29, 0x6b, 0x29, 0x9d, 0x29, 0xd0, 0x2a, 0x02, |
|---|
| 264 | 0x2a, 0x35, 0x2a, 0x68, 0x2a, 0x9b, 0x2a, 0xcf, 0x2b, 0x02, 0x2b, |
|---|
| 265 | 0x36, 0x2b, 0x69, 0x2b, 0x9d, 0x2b, 0xd1, 0x2c, 0x05, 0x2c, 0x39, |
|---|
| 266 | 0x2c, 0x6e, 0x2c, 0xa2, 0x2c, 0xd7, 0x2d, 0x0c, 0x2d, 0x41, 0x2d, |
|---|
| 267 | 0x76, 0x2d, 0xab, 0x2d, 0xe1, 0x2e, 0x16, 0x2e, 0x4c, 0x2e, 0x82, |
|---|
| 268 | 0x2e, 0xb7, 0x2e, 0xee, 0x2f, 0x24, 0x2f, 0x5a, 0x2f, 0x91, 0x2f, |
|---|
| 269 | 0xc7, 0x2f, 0xfe, 0x30, 0x35, 0x30, 0x6c, 0x30, 0xa4, 0x30, 0xdb, |
|---|
| 270 | 0x31, 0x12, 0x31, 0x4a, 0x31, 0x82, 0x31, 0xba, 0x31, 0xf2, 0x32, |
|---|
| 271 | 0x2a, 0x32, 0x63, 0x32, 0x9b, 0x32, 0xd4, 0x33, 0x0d, 0x33, 0x46, |
|---|
| 272 | 0x33, 0x7f, 0x33, 0xb8, 0x33, 0xf1, 0x34, 0x2b, 0x34, 0x65, 0x34, |
|---|
| 273 | 0x9e, 0x34, 0xd8, 0x35, 0x13, 0x35, 0x4d, 0x35, 0x87, 0x35, 0xc2, |
|---|
| 274 | 0x35, 0xfd, 0x36, 0x37, 0x36, 0x72, 0x36, 0xae, 0x36, 0xe9, 0x37, |
|---|
| 275 | 0x24, 0x37, 0x60, 0x37, 0x9c, 0x37, 0xd7, 0x38, 0x14, 0x38, 0x50, |
|---|
| 276 | 0x38, 0x8c, 0x38, 0xc8, 0x39, 0x05, 0x39, 0x42, 0x39, 0x7f, 0x39, |
|---|
| 277 | 0xbc, 0x39, 0xf9, 0x3a, 0x36, 0x3a, 0x74, 0x3a, 0xb2, 0x3a, 0xef, |
|---|
| 278 | 0x3b, 0x2d, 0x3b, 0x6b, 0x3b, 0xaa, 0x3b, 0xe8, 0x3c, 0x27, 0x3c, |
|---|
| 279 | 0x65, 0x3c, 0xa4, 0x3c, 0xe3, 0x3d, 0x22, 0x3d, 0x61, 0x3d, 0xa1, |
|---|
| 280 | 0x3d, 0xe0, 0x3e, 0x20, 0x3e, 0x60, 0x3e, 0xa0, 0x3e, 0xe0, 0x3f, |
|---|
| 281 | 0x21, 0x3f, 0x61, 0x3f, 0xa2, 0x3f, 0xe2, 0x40, 0x23, 0x40, 0x64, |
|---|
| 282 | 0x40, 0xa6, 0x40, 0xe7, 0x41, 0x29, 0x41, 0x6a, 0x41, 0xac, 0x41, |
|---|
| 283 | 0xee, 0x42, 0x30, 0x42, 0x72, 0x42, 0xb5, 0x42, 0xf7, 0x43, 0x3a, |
|---|
| 284 | 0x43, 0x7d, 0x43, 0xc0, 0x44, 0x03, 0x44, 0x47, 0x44, 0x8a, 0x44, |
|---|
| 285 | 0xce, 0x45, 0x12, 0x45, 0x55, 0x45, 0x9a, 0x45, 0xde, 0x46, 0x22, |
|---|
| 286 | 0x46, 0x67, 0x46, 0xab, 0x46, 0xf0, 0x47, 0x35, 0x47, 0x7b, 0x47, |
|---|
| 287 | 0xc0, 0x48, 0x05, 0x48, 0x4b, 0x48, 0x91, 0x48, 0xd7, 0x49, 0x1d, |
|---|
| 288 | 0x49, 0x63, 0x49, 0xa9, 0x49, 0xf0, 0x4a, 0x37, 0x4a, 0x7d, 0x4a, |
|---|
| 289 | 0xc4, 0x4b, 0x0c, 0x4b, 0x53, 0x4b, 0x9a, 0x4b, 0xe2, 0x4c, 0x2a, |
|---|
| 290 | 0x4c, 0x72, 0x4c, 0xba, 0x4d, 0x02, 0x4d, 0x4a, 0x4d, 0x93, 0x4d, |
|---|
| 291 | 0xdc, 0x4e, 0x25, 0x4e, 0x6e, 0x4e, 0xb7, 0x4f, 0x00, 0x4f, 0x49, |
|---|
| 292 | 0x4f, 0x93, 0x4f, 0xdd, 0x50, 0x27, 0x50, 0x71, 0x50, 0xbb, 0x51, |
|---|
| 293 | 0x06, 0x51, 0x50, 0x51, 0x9b, 0x51, 0xe6, 0x52, 0x31, 0x52, 0x7c, |
|---|
| 294 | 0x52, 0xc7, 0x53, 0x13, 0x53, 0x5f, 0x53, 0xaa, 0x53, 0xf6, 0x54, |
|---|
| 295 | 0x42, 0x54, 0x8f, 0x54, 0xdb, 0x55, 0x28, 0x55, 0x75, 0x55, 0xc2, |
|---|
| 296 | 0x56, 0x0f, 0x56, 0x5c, 0x56, 0xa9, 0x56, 0xf7, 0x57, 0x44, 0x57, |
|---|
| 297 | 0x92, 0x57, 0xe0, 0x58, 0x2f, 0x58, 0x7d, 0x58, 0xcb, 0x59, 0x1a, |
|---|
| 298 | 0x59, 0x69, 0x59, 0xb8, 0x5a, 0x07, 0x5a, 0x56, 0x5a, 0xa6, 0x5a, |
|---|
| 299 | 0xf5, 0x5b, 0x45, 0x5b, 0x95, 0x5b, 0xe5, 0x5c, 0x35, 0x5c, 0x86, |
|---|
| 300 | 0x5c, 0xd6, 0x5d, 0x27, 0x5d, 0x78, 0x5d, 0xc9, 0x5e, 0x1a, 0x5e, |
|---|
| 301 | 0x6c, 0x5e, 0xbd, 0x5f, 0x0f, 0x5f, 0x61, 0x5f, 0xb3, 0x60, 0x05, |
|---|
| 302 | 0x60, 0x57, 0x60, 0xaa, 0x60, 0xfc, 0x61, 0x4f, 0x61, 0xa2, 0x61, |
|---|
| 303 | 0xf5, 0x62, 0x49, 0x62, 0x9c, 0x62, 0xf0, 0x63, 0x43, 0x63, 0x97, |
|---|
| 304 | 0x63, 0xeb, 0x64, 0x40, 0x64, 0x94, 0x64, 0xe9, 0x65, 0x3d, 0x65, |
|---|
| 305 | 0x92, 0x65, 0xe7, 0x66, 0x3d, 0x66, 0x92, 0x66, 0xe8, 0x67, 0x3d, |
|---|
| 306 | 0x67, 0x93, 0x67, 0xe9, 0x68, 0x3f, 0x68, 0x96, 0x68, 0xec, 0x69, |
|---|
| 307 | 0x43, 0x69, 0x9a, 0x69, 0xf1, 0x6a, 0x48, 0x6a, 0x9f, 0x6a, 0xf7, |
|---|
| 308 | 0x6b, 0x4f, 0x6b, 0xa7, 0x6b, 0xff, 0x6c, 0x57, 0x6c, 0xaf, 0x6d, |
|---|
| 309 | 0x08, 0x6d, 0x60, 0x6d, 0xb9, 0x6e, 0x12, 0x6e, 0x6b, 0x6e, 0xc4, |
|---|
| 310 | 0x6f, 0x1e, 0x6f, 0x78, 0x6f, 0xd1, 0x70, 0x2b, 0x70, 0x86, 0x70, |
|---|
| 311 | 0xe0, 0x71, 0x3a, 0x71, 0x95, 0x71, 0xf0, 0x72, 0x4b, 0x72, 0xa6, |
|---|
| 312 | 0x73, 0x01, 0x73, 0x5d, 0x73, 0xb8, 0x74, 0x14, 0x74, 0x70, 0x74, |
|---|
| 313 | 0xcc, 0x75, 0x28, 0x75, 0x85, 0x75, 0xe1, 0x76, 0x3e, 0x76, 0x9b, |
|---|
| 314 | 0x76, 0xf8, 0x77, 0x56, 0x77, 0xb3, 0x78, 0x11, 0x78, 0x6e, 0x78, |
|---|
| 315 | 0xcc, 0x79, 0x2a, 0x79, 0x89, 0x79, 0xe7, 0x7a, 0x46, 0x7a, 0xa5, |
|---|
| 316 | 0x7b, 0x04, 0x7b, 0x63, 0x7b, 0xc2, 0x7c, 0x21, 0x7c, 0x81, 0x7c, |
|---|
| 317 | 0xe1, 0x7d, 0x41, 0x7d, 0xa1, 0x7e, 0x01, 0x7e, 0x62, 0x7e, 0xc2, |
|---|
| 318 | 0x7f, 0x23, 0x7f, 0x84, 0x7f, 0xe5, 0x80, 0x47, 0x80, 0xa8, 0x81, |
|---|
| 319 | 0x0a, 0x81, 0x6b, 0x81, 0xcd, 0x82, 0x30, 0x82, 0x92, 0x82, 0xf4, |
|---|
| 320 | 0x83, 0x57, 0x83, 0xba, 0x84, 0x1d, 0x84, 0x80, 0x84, 0xe3, 0x85, |
|---|
| 321 | 0x47, 0x85, 0xab, 0x86, 0x0e, 0x86, 0x72, 0x86, 0xd7, 0x87, 0x3b, |
|---|
| 322 | 0x87, 0x9f, 0x88, 0x04, 0x88, 0x69, 0x88, 0xce, 0x89, 0x33, 0x89, |
|---|
| 323 | 0x99, 0x89, 0xfe, 0x8a, 0x64, 0x8a, 0xca, 0x8b, 0x30, 0x8b, 0x96, |
|---|
| 324 | 0x8b, 0xfc, 0x8c, 0x63, 0x8c, 0xca, 0x8d, 0x31, 0x8d, 0x98, 0x8d, |
|---|
| 325 | 0xff, 0x8e, 0x66, 0x8e, 0xce, 0x8f, 0x36, 0x8f, 0x9e, 0x90, 0x06, |
|---|
| 326 | 0x90, 0x6e, 0x90, 0xd6, 0x91, 0x3f, 0x91, 0xa8, 0x92, 0x11, 0x92, |
|---|
| 327 | 0x7a, 0x92, 0xe3, 0x93, 0x4d, 0x93, 0xb6, 0x94, 0x20, 0x94, 0x8a, |
|---|
| 328 | 0x94, 0xf4, 0x95, 0x5f, 0x95, 0xc9, 0x96, 0x34, 0x96, 0x9f, 0x97, |
|---|
| 329 | 0x0a, 0x97, 0x75, 0x97, 0xe0, 0x98, 0x4c, 0x98, 0xb8, 0x99, 0x24, |
|---|
| 330 | 0x99, 0x90, 0x99, 0xfc, 0x9a, 0x68, 0x9a, 0xd5, 0x9b, 0x42, 0x9b, |
|---|
| 331 | 0xaf, 0x9c, 0x1c, 0x9c, 0x89, 0x9c, 0xf7, 0x9d, 0x64, 0x9d, 0xd2, |
|---|
| 332 | 0x9e, 0x40, 0x9e, 0xae, 0x9f, 0x1d, 0x9f, 0x8b, 0x9f, 0xfa, 0xa0, |
|---|
| 333 | 0x69, 0xa0, 0xd8, 0xa1, 0x47, 0xa1, 0xb6, 0xa2, 0x26, 0xa2, 0x96, |
|---|
| 334 | 0xa3, 0x06, 0xa3, 0x76, 0xa3, 0xe6, 0xa4, 0x56, 0xa4, 0xc7, 0xa5, |
|---|
| 335 | 0x38, 0xa5, 0xa9, 0xa6, 0x1a, 0xa6, 0x8b, 0xa6, 0xfd, 0xa7, 0x6e, |
|---|
| 336 | 0xa7, 0xe0, 0xa8, 0x52, 0xa8, 0xc4, 0xa9, 0x37, 0xa9, 0xa9, 0xaa, |
|---|
| 337 | 0x1c, 0xaa, 0x8f, 0xab, 0x02, 0xab, 0x75, 0xab, 0xe9, 0xac, 0x5c, |
|---|
| 338 | 0xac, 0xd0, 0xad, 0x44, 0xad, 0xb8, 0xae, 0x2d, 0xae, 0xa1, 0xaf, |
|---|
| 339 | 0x16, 0xaf, 0x8b, 0xb0, 0x00, 0xb0, 0x75, 0xb0, 0xea, 0xb1, 0x60, |
|---|
| 340 | 0xb1, 0xd6, 0xb2, 0x4b, 0xb2, 0xc2, 0xb3, 0x38, 0xb3, 0xae, 0xb4, |
|---|
| 341 | 0x25, 0xb4, 0x9c, 0xb5, 0x13, 0xb5, 0x8a, 0xb6, 0x01, 0xb6, 0x79, |
|---|
| 342 | 0xb6, 0xf0, 0xb7, 0x68, 0xb7, 0xe0, 0xb8, 0x59, 0xb8, 0xd1, 0xb9, |
|---|
| 343 | 0x4a, 0xb9, 0xc2, 0xba, 0x3b, 0xba, 0xb5, 0xbb, 0x2e, 0xbb, 0xa7, |
|---|
| 344 | 0xbc, 0x21, 0xbc, 0x9b, 0xbd, 0x15, 0xbd, 0x8f, 0xbe, 0x0a, 0xbe, |
|---|
| 345 | 0x84, 0xbe, 0xff, 0xbf, 0x7a, 0xbf, 0xf5, 0xc0, 0x70, 0xc0, 0xec, |
|---|
| 346 | 0xc1, 0x67, 0xc1, 0xe3, 0xc2, 0x5f, 0xc2, 0xdb, 0xc3, 0x58, 0xc3, |
|---|
| 347 | 0xd4, 0xc4, 0x51, 0xc4, 0xce, 0xc5, 0x4b, 0xc5, 0xc8, 0xc6, 0x46, |
|---|
| 348 | 0xc6, 0xc3, 0xc7, 0x41, 0xc7, 0xbf, 0xc8, 0x3d, 0xc8, 0xbc, 0xc9, |
|---|
| 349 | 0x3a, 0xc9, 0xb9, 0xca, 0x38, 0xca, 0xb7, 0xcb, 0x36, 0xcb, 0xb6, |
|---|
| 350 | 0xcc, 0x35, 0xcc, 0xb5, 0xcd, 0x35, 0xcd, 0xb5, 0xce, 0x36, 0xce, |
|---|
| 351 | 0xb6, 0xcf, 0x37, 0xcf, 0xb8, 0xd0, 0x39, 0xd0, 0xba, 0xd1, 0x3c, |
|---|
| 352 | 0xd1, 0xbe, 0xd2, 0x3f, 0xd2, 0xc1, 0xd3, 0x44, 0xd3, 0xc6, 0xd4, |
|---|
| 353 | 0x49, 0xd4, 0xcb, 0xd5, 0x4e, 0xd5, 0xd1, 0xd6, 0x55, 0xd6, 0xd8, |
|---|
| 354 | 0xd7, 0x5c, 0xd7, 0xe0, 0xd8, 0x64, 0xd8, 0xe8, 0xd9, 0x6c, 0xd9, |
|---|
| 355 | 0xf1, 0xda, 0x76, 0xda, 0xfb, 0xdb, 0x80, 0xdc, 0x05, 0xdc, 0x8a, |
|---|
| 356 | 0xdd, 0x10, 0xdd, 0x96, 0xde, 0x1c, 0xde, 0xa2, 0xdf, 0x29, 0xdf, |
|---|
| 357 | 0xaf, 0xe0, 0x36, 0xe0, 0xbd, 0xe1, 0x44, 0xe1, 0xcc, 0xe2, 0x53, |
|---|
| 358 | 0xe2, 0xdb, 0xe3, 0x63, 0xe3, 0xeb, 0xe4, 0x73, 0xe4, 0xfc, 0xe5, |
|---|
| 359 | 0x84, 0xe6, 0x0d, 0xe6, 0x96, 0xe7, 0x1f, 0xe7, 0xa9, 0xe8, 0x32, |
|---|
| 360 | 0xe8, 0xbc, 0xe9, 0x46, 0xe9, 0xd0, 0xea, 0x5b, 0xea, 0xe5, 0xeb, |
|---|
| 361 | 0x70, 0xeb, 0xfb, 0xec, 0x86, 0xed, 0x11, 0xed, 0x9c, 0xee, 0x28, |
|---|
| 362 | 0xee, 0xb4, 0xef, 0x40, 0xef, 0xcc, 0xf0, 0x58, 0xf0, 0xe5, 0xf1, |
|---|
| 363 | 0x72, 0xf1, 0xff, 0xf2, 0x8c, 0xf3, 0x19, 0xf3, 0xa7, 0xf4, 0x34, |
|---|
| 364 | 0xf4, 0xc2, 0xf5, 0x50, 0xf5, 0xde, 0xf6, 0x6d, 0xf6, 0xfb, 0xf7, |
|---|
| 365 | 0x8a, 0xf8, 0x19, 0xf8, 0xa8, 0xf9, 0x38, 0xf9, 0xc7, 0xfa, 0x57, |
|---|
| 366 | 0xfa, 0xe7, 0xfb, 0x77, 0xfc, 0x07, 0xfc, 0x98, 0xfd, 0x29, 0xfd, |
|---|
| 367 | 0xba, 0xfe, 0x4b, 0xfe, 0xdc, 0xff, 0x6d, 0xff, 0xff |
|---|
| 368 | }; |
|---|
| 369 | |
|---|
| 370 | |
|---|
| 371 | char |
|---|
| 372 | *description, |
|---|
| 373 | **options, |
|---|
| 374 | **profiles, |
|---|
| 375 | **properties; |
|---|
| 376 | |
|---|
| 377 | const char |
|---|
| 378 | *option, |
|---|
| 379 | *property; |
|---|
| 380 | |
|---|
| 381 | DrawingWand |
|---|
| 382 | *drawing_wand; |
|---|
| 383 | |
|---|
| 384 | ExceptionType |
|---|
| 385 | severity; |
|---|
| 386 | |
|---|
| 387 | MagickWand |
|---|
| 388 | *clone_wand, |
|---|
| 389 | *magick_wand; |
|---|
| 390 | |
|---|
| 391 | PixelIterator |
|---|
| 392 | *iterator; |
|---|
| 393 | |
|---|
| 394 | PixelWand |
|---|
| 395 | *background, |
|---|
| 396 | *border, |
|---|
| 397 | *fill, |
|---|
| 398 | **pixels; |
|---|
| 399 | |
|---|
| 400 | register long |
|---|
| 401 | i; |
|---|
| 402 | |
|---|
| 403 | size_t |
|---|
| 404 | length; |
|---|
| 405 | |
|---|
| 406 | unsigned char |
|---|
| 407 | *profile; |
|---|
| 408 | |
|---|
| 409 | unsigned int |
|---|
| 410 | status; |
|---|
| 411 | |
|---|
| 412 | unsigned long |
|---|
| 413 | columns, |
|---|
| 414 | delay, |
|---|
| 415 | number_options, |
|---|
| 416 | number_profiles, |
|---|
| 417 | number_properties, |
|---|
| 418 | number_wands, |
|---|
| 419 | rows; |
|---|
| 420 | |
|---|
| 421 | magick_wand=NewMagickWand(); |
|---|
| 422 | (void) MagickSetSize(magick_wand,640,480); |
|---|
| 423 | (void) MagickGetSize(magick_wand,&columns,&rows); |
|---|
| 424 | if ((columns != 640) || (rows != 480)) |
|---|
| 425 | { |
|---|
| 426 | (void) fprintf(stderr,"Unexpected magick wand size\n"); |
|---|
| 427 | exit(1); |
|---|
| 428 | } |
|---|
| 429 | (void) fprintf(stdout,"Reading images...\n"); |
|---|
| 430 | { |
|---|
| 431 | char |
|---|
| 432 | *p, |
|---|
| 433 | path[MaxTextExtent]; |
|---|
| 434 | |
|---|
| 435 | path[0]=0; |
|---|
| 436 | p=getenv("SRCDIR"); |
|---|
| 437 | if (p != (char *) NULL) |
|---|
| 438 | { |
|---|
| 439 | (void) strcpy(path,p); |
|---|
| 440 | if (path[strlen(path)-1] != '/') |
|---|
| 441 | (void) strcat(path,"/"); |
|---|
| 442 | } |
|---|
| 443 | (void) strcat(path,"sequence.miff"); |
|---|
| 444 | status=MagickReadImage(magick_wand,path); |
|---|
| 445 | } |
|---|
| 446 | if (status == MagickFalse) |
|---|
| 447 | ThrowAPIException(magick_wand); |
|---|
| 448 | if (MagickGetNumberImages(magick_wand) != 5) |
|---|
| 449 | (void) fprintf(stderr,"read %lu images; expected 5\n", |
|---|
| 450 | (unsigned long) MagickGetNumberImages(magick_wand)); |
|---|
| 451 | (void) fprintf(stdout,"Iterate forward...\n"); |
|---|
| 452 | MagickResetIterator(magick_wand); |
|---|
| 453 | while (MagickNextImage(magick_wand) != MagickFalse) |
|---|
| 454 | (void) fprintf(stdout,"index %ld scene %lu\n", |
|---|
| 455 | MagickGetIteratorIndex(magick_wand),MagickGetImageScene(magick_wand)); |
|---|
| 456 | (void) fprintf(stdout,"Iterate reverse...\n"); |
|---|
| 457 | while (MagickPreviousImage(magick_wand) != MagickFalse) |
|---|
| 458 | (void) fprintf(stdout,"index %ld scene %lu\n", |
|---|
| 459 | MagickGetIteratorIndex(magick_wand),MagickGetImageScene(magick_wand)); |
|---|
| 460 | (void) fprintf(stdout,"Remove scene 1...\n"); |
|---|
| 461 | (void) MagickSetIteratorIndex(magick_wand,1); |
|---|
| 462 | clone_wand=MagickGetImage(magick_wand); |
|---|
| 463 | status=MagickRemoveImage(magick_wand); |
|---|
| 464 | if (status == MagickFalse) |
|---|
| 465 | ThrowAPIException(magick_wand); |
|---|
| 466 | MagickResetIterator(magick_wand); |
|---|
| 467 | while (MagickNextImage(magick_wand) != MagickFalse) |
|---|
| 468 | (void) fprintf(stdout,"index %ld scene %lu\n", |
|---|
| 469 | MagickGetIteratorIndex(magick_wand),MagickGetImageScene(magick_wand)); |
|---|
| 470 | (void) fprintf(stdout,"Insert scene 1 back in sequence...\n"); |
|---|
| 471 | (void) MagickSetIteratorIndex(magick_wand,0); |
|---|
| 472 | status=MagickAddImage(magick_wand,clone_wand); |
|---|
| 473 | if (status == MagickFalse) |
|---|
| 474 | ThrowAPIException(magick_wand); |
|---|
| 475 | MagickResetIterator(magick_wand); |
|---|
| 476 | while (MagickNextImage(magick_wand) != MagickFalse) |
|---|
| 477 | (void) fprintf(stdout,"index %ld scene %lu\n", |
|---|
| 478 | MagickGetIteratorIndex(magick_wand),MagickGetImageScene(magick_wand)); |
|---|
| 479 | (void) fprintf(stdout,"Set scene 2 to scene 1...\n"); |
|---|
| 480 | (void) MagickSetIteratorIndex(magick_wand,2); |
|---|
| 481 | status=MagickSetImage(magick_wand,clone_wand); |
|---|
| 482 | clone_wand=DestroyMagickWand(clone_wand); |
|---|
| 483 | if (status == MagickFalse) |
|---|
| 484 | ThrowAPIException(magick_wand); |
|---|
| 485 | MagickResetIterator(magick_wand); |
|---|
| 486 | while (MagickNextImage(magick_wand) != MagickFalse) |
|---|
| 487 | (void) fprintf(stdout,"index %ld scene %lu\n", |
|---|
| 488 | MagickGetIteratorIndex(magick_wand),MagickGetImageScene(magick_wand)); |
|---|
| 489 | (void) fprintf(stdout,"Apply image processing options...\n"); |
|---|
| 490 | status=MagickCropImage(magick_wand,60,60,10,10); |
|---|
| 491 | if (status == MagickFalse) |
|---|
| 492 | ThrowAPIException(magick_wand); |
|---|
| 493 | MagickResetIterator(magick_wand); |
|---|
| 494 | background=NewPixelWand(); |
|---|
| 495 | status=PixelSetColor(background,"#000000"); |
|---|
| 496 | if (status == MagickFalse) |
|---|
| 497 | ThrowAPIException(magick_wand); |
|---|
| 498 | status=MagickRotateImage(magick_wand,background,90.0); |
|---|
| 499 | if (status == MagickFalse) |
|---|
| 500 | ThrowAPIException(magick_wand); |
|---|
| 501 | border=NewPixelWand(); |
|---|
| 502 | (void) PixelSetColor(background,"green"); |
|---|
| 503 | (void) PixelSetColor(border,"black"); |
|---|
| 504 | status=MagickFloodfillPaintImage(magick_wand,AllChannels,background, |
|---|
| 505 | 0.01*QuantumRange,border,0,0,MagickFalse); |
|---|
| 506 | if (status == MagickFalse) |
|---|
| 507 | ThrowAPIException(magick_wand); |
|---|
| 508 | background=DestroyPixelWand(background); |
|---|
| 509 | border=DestroyPixelWand(border); |
|---|
| 510 | drawing_wand=NewDrawingWand(); |
|---|
| 511 | (void) PushDrawingWand(drawing_wand); |
|---|
| 512 | (void) DrawRotate(drawing_wand,45); |
|---|
| 513 | (void) DrawSetFontSize(drawing_wand,18); |
|---|
| 514 | fill=NewPixelWand(); |
|---|
| 515 | (void) PixelSetColor(fill,"green"); |
|---|
| 516 | (void) DrawSetFillColor(drawing_wand,fill); |
|---|
| 517 | fill=DestroyPixelWand(fill); |
|---|
| 518 | (void) DrawAnnotation(drawing_wand,15,5,(const unsigned char *) "Magick"); |
|---|
| 519 | (void) PopDrawingWand(drawing_wand); |
|---|
| 520 | (void) MagickSetIteratorIndex(magick_wand,1); |
|---|
| 521 | status=MagickDrawImage(magick_wand,drawing_wand); |
|---|
| 522 | if (status == MagickFalse) |
|---|
| 523 | ThrowAPIException(magick_wand); |
|---|
| 524 | status=MagickAnnotateImage(magick_wand,drawing_wand,70,5,90,"Image"); |
|---|
| 525 | if (status == MagickFalse) |
|---|
| 526 | ThrowAPIException(magick_wand); |
|---|
| 527 | drawing_wand=DestroyDrawingWand(drawing_wand); |
|---|
| 528 | { |
|---|
| 529 | unsigned char |
|---|
| 530 | pixels[27], |
|---|
| 531 | primary_colors[27] = |
|---|
| 532 | { |
|---|
| 533 | 0, 0, 0, |
|---|
| 534 | 0, 0, 255, |
|---|
| 535 | 0, 255, 0, |
|---|
| 536 | 0, 255, 255, |
|---|
| 537 | 255, 255, 255, |
|---|
| 538 | 255, 0, 0, |
|---|
| 539 | 255, 0, 255, |
|---|
| 540 | 255, 255, 0, |
|---|
| 541 | 128, 128, 128, |
|---|
| 542 | }; |
|---|
| 543 | |
|---|
| 544 | (void) MagickSetIteratorIndex(magick_wand,2); |
|---|
| 545 | status=MagickSetImagePixels(magick_wand,10,10,3,3,"RGB",CharPixel, |
|---|
| 546 | primary_colors); |
|---|
| 547 | if (status == MagickFalse) |
|---|
| 548 | ThrowAPIException(magick_wand); |
|---|
| 549 | status=MagickGetImagePixels(magick_wand,10,10,3,3,"RGB",CharPixel,pixels); |
|---|
| 550 | if (status == MagickFalse) |
|---|
| 551 | ThrowAPIException(magick_wand); |
|---|
| 552 | for (i=0; i < 9; i++) |
|---|
| 553 | if (pixels[i] != primary_colors[i]) |
|---|
| 554 | { |
|---|
| 555 | (void) fprintf(stderr,"Get pixels does not match set pixels\n"); |
|---|
| 556 | exit(1); |
|---|
| 557 | } |
|---|
| 558 | } |
|---|
| 559 | (void) MagickSetIteratorIndex(magick_wand,3); |
|---|
| 560 | status=MagickResizeImage(magick_wand,50,50,UndefinedFilter,1.0); |
|---|
| 561 | if (status == MagickFalse) |
|---|
| 562 | ThrowAPIException(magick_wand); |
|---|
| 563 | (void) MagickSetIteratorIndex(magick_wand,4); |
|---|
| 564 | (void) fprintf(stdout,"Utilitize pixel iterator to draw diagonal...\n"); |
|---|
| 565 | iterator=NewPixelIterator(magick_wand); |
|---|
| 566 | if (iterator == (PixelIterator *) NULL) |
|---|
| 567 | ThrowAPIException(magick_wand); |
|---|
| 568 | pixels=PixelGetNextIteratorRow(iterator,&number_wands); |
|---|
| 569 | for (i=0; pixels != (PixelWand **) NULL; i++) |
|---|
| 570 | { |
|---|
| 571 | (void) PixelSetColor(pixels[i],"#224466"); |
|---|
| 572 | (void) PixelSyncIterator(iterator); |
|---|
| 573 | pixels=PixelGetNextIteratorRow(iterator,&number_wands); |
|---|
| 574 | } |
|---|
| 575 | (void) PixelSyncIterator(iterator); |
|---|
| 576 | iterator=DestroyPixelIterator(iterator); |
|---|
| 577 | (void) fprintf(stdout,"Write to wandtest_out.miff...\n"); |
|---|
| 578 | status=MagickWriteImages(magick_wand,"wandtest_out.miff",MagickTrue); |
|---|
| 579 | if (status == MagickFalse) |
|---|
| 580 | ThrowAPIException(magick_wand); |
|---|
| 581 | (void) fprintf(stdout,"Change image format from \"MIFF\" to \"GIF\"...\n"); |
|---|
| 582 | status=MagickSetImageFormat(magick_wand,"GIF"); |
|---|
| 583 | if (status == MagickFalse) |
|---|
| 584 | ThrowAPIException(magick_wand); |
|---|
| 585 | (void) fprintf(stdout,"Set delay between frames to %d seconds...\n", |
|---|
| 586 | WandDelay); |
|---|
| 587 | status=MagickSetImageDelay(magick_wand,100*WandDelay); |
|---|
| 588 | if (status == MagickFalse) |
|---|
| 589 | ThrowAPIException(magick_wand); |
|---|
| 590 | delay=MagickGetImageDelay(magick_wand); |
|---|
| 591 | if (delay != (100*WandDelay)) |
|---|
| 592 | { |
|---|
| 593 | (void) fprintf( stderr,"Get delay does not match set delay\n"); |
|---|
| 594 | exit(1); |
|---|
| 595 | } |
|---|
| 596 | (void) fprintf(stdout,"Write to wandtest_out_0.gif...\n"); |
|---|
| 597 | status=MagickWriteImages(magick_wand,"wandtest_out.gif",MagickTrue); |
|---|
| 598 | if (status == MagickFalse) |
|---|
| 599 | ThrowAPIException(magick_wand); |
|---|
| 600 | (void) fprintf(stdout,"Set, list, get, and delete wand option...\n"); |
|---|
| 601 | status=MagickSetOption(magick_wand,"wand:custom-option",CustomOption); |
|---|
| 602 | if (status == MagickFalse) |
|---|
| 603 | ThrowAPIException(magick_wand); |
|---|
| 604 | option=MagickGetOption(magick_wand,"wand:custom-option"); |
|---|
| 605 | if ((option == (const char *) NULL) || |
|---|
| 606 | (strlen(option) != strlen(CustomOption)) || |
|---|
| 607 | (memcmp(option,CustomOption,strlen(option)) != 0)) |
|---|
| 608 | { |
|---|
| 609 | (void) fprintf( stderr,"Option does not match\n"); |
|---|
| 610 | exit(1); |
|---|
| 611 | } |
|---|
| 612 | options=MagickGetOptions(magick_wand,"*",&number_options); |
|---|
| 613 | if (options != (char **) NULL) |
|---|
| 614 | { |
|---|
| 615 | for (i=0; i < (long) number_options; i++) |
|---|
| 616 | { |
|---|
| 617 | (void) fprintf(stdout," %s\n",options[i]); |
|---|
| 618 | options[i]=(char *) MagickRelinquishMemory(options[i]); |
|---|
| 619 | } |
|---|
| 620 | options=(char **) MagickRelinquishMemory(options); |
|---|
| 621 | } |
|---|
| 622 | status=MagickDeleteOption(magick_wand,"wand:custom-option"); |
|---|
| 623 | if (status == MagickFalse) |
|---|
| 624 | ThrowAPIException(magick_wand); |
|---|
| 625 | (void) fprintf(stdout,"Set, list, get, and delete wand property...\n"); |
|---|
| 626 | status=MagickSetImageProperty(magick_wand,"wand:custom-property", |
|---|
| 627 | CustomProperty); |
|---|
| 628 | if (status == MagickFalse) |
|---|
| 629 | ThrowAPIException(magick_wand); |
|---|
| 630 | property=MagickGetImageProperty(magick_wand,"wand:custom-property"); |
|---|
| 631 | if ((property == (const char *) NULL) || |
|---|
| 632 | (strlen(property) != strlen(CustomProperty)) || |
|---|
| 633 | (memcmp(property,CustomProperty,strlen(property)) != 0)) |
|---|
| 634 | { |
|---|
| 635 | (void) fprintf( stderr,"Property does not match\n"); |
|---|
| 636 | exit(1); |
|---|
| 637 | } |
|---|
| 638 | properties=MagickGetImageProperties(magick_wand,"*",&number_properties); |
|---|
| 639 | if (properties != (char **) NULL) |
|---|
| 640 | { |
|---|
| 641 | for (i=0; i < (long) number_properties; i++) |
|---|
| 642 | { |
|---|
| 643 | (void) fprintf(stdout," %s\n",properties[i]); |
|---|
| 644 | properties[i]=(char *) MagickRelinquishMemory(properties[i]); |
|---|
| 645 | } |
|---|
| 646 | properties=(char **) MagickRelinquishMemory(properties); |
|---|
| 647 | } |
|---|
| 648 | status=MagickDeleteImageProperty(magick_wand,"wand:custom-property"); |
|---|
| 649 | if (status == MagickFalse) |
|---|
| 650 | ThrowAPIException(magick_wand); |
|---|
| 651 | (void) fprintf(stdout,"Set, list, get, and remove sRGB color profile...\n"); |
|---|
| 652 | status=MagickSetImageProfile(magick_wand,"sRGB",sRGBProfile, |
|---|
| 653 | sizeof(sRGBProfile)); |
|---|
| 654 | if (status == MagickFalse) |
|---|
| 655 | ThrowAPIException(magick_wand); |
|---|
| 656 | profile=(unsigned char *) MagickGetImageProfile(magick_wand,"sRGB",&length); |
|---|
| 657 | if ((profile == (unsigned char *) NULL) || (length != sizeof(sRGBProfile)) || |
|---|
| 658 | (memcmp(profile,sRGBProfile,length) != 0)) |
|---|
| 659 | { |
|---|
| 660 | (void) fprintf( stderr,"Profile does not match\n"); |
|---|
| 661 | exit(1); |
|---|
| 662 | } |
|---|
| 663 | profile=MagickRelinquishMemory(profile); |
|---|
| 664 | profiles=MagickGetImageProfiles(magick_wand,"*",&number_profiles); |
|---|
| 665 | if (profiles != (char **) NULL) |
|---|
| 666 | { |
|---|
| 667 | for (i=0; i < (long) number_profiles; i++) |
|---|
| 668 | { |
|---|
| 669 | (void) fprintf(stdout," %s\n",profiles[i]); |
|---|
| 670 | profiles[i]=(char *) MagickRelinquishMemory(profiles[i]); |
|---|
| 671 | } |
|---|
| 672 | profiles=(char **) MagickRelinquishMemory(profiles); |
|---|
| 673 | } |
|---|
| 674 | profile=(unsigned char *) MagickRemoveImageProfile(magick_wand,"sRGB", |
|---|
| 675 | &length); |
|---|
| 676 | if ((profile == (unsigned char *) NULL) || (length != sizeof(sRGBProfile)) || |
|---|
| 677 | (memcmp(profile,sRGBProfile,length) != 0)) |
|---|
| 678 | { |
|---|
| 679 | (void) fprintf( stderr,"Profile does not match\n"); |
|---|
| 680 | exit(1); |
|---|
| 681 | } |
|---|
| 682 | profile=MagickRelinquishMemory(profile); |
|---|
| 683 | magick_wand=DestroyMagickWand(magick_wand); |
|---|
| 684 | (void) fprintf(stdout,"Wand tests pass.\n"); |
|---|
| 685 | return(0); |
|---|
| 686 | } |
|---|