开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
forked from Stefan/Java8Source
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (2)
master
develop
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (2)
master
develop
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (2)
master
develop
Java8Source
/
src
/
javax
/
imageio
/
ImageWriteParam.java
Java8Source
/
src
/
javax
/
imageio
/
ImageWriteParam.java
ImageWriteParam.java 54.86 KB
一键复制 编辑 原始数据 按行查看 历史
Stefan 提交于 2020年08月11日 23:17 +08:00 . 初始化
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
/*
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.imageio;
import java.awt.Dimension;
import java.util.Locale;
/**
* A class describing how a stream is to be encoded. Instances of
* this class or its subclasses are used to supply prescriptive
* "how-to" information to instances of <code>ImageWriter</code>.
*
* <p> A plug-in for a specific image format may define a subclass of
* this class, and return objects of that class from the
* <code>getDefaultWriteParam</code> method of its
* <code>ImageWriter</code> implementation. For example, the built-in
* JPEG writer plug-in will return instances of
* <code>javax.imageio.plugins.jpeg.JPEGImageWriteParam</code>.
*
* <p> The region of the image to be written is determined by first
* intersecting the actual bounds of the image with the rectangle
* specified by <code>IIOParam.setSourceRegion</code>, if any. If the
* resulting rectangle has a width or height of zero, the writer will
* throw an <code>IIOException</code>. If the intersection is
* non-empty, writing will commence with the first subsampled pixel
* and include additional pixels within the intersected bounds
* according to the horizontal and vertical subsampling factors
* specified by {@link IIOParam#setSourceSubsampling
* IIOParam.setSourceSubsampling}.
*
* <p> Individual features such as tiling, progressive encoding, and
* compression may be set in one of four modes.
* <code>MODE_DISABLED</code> disables the features;
* <code>MODE_DEFAULT</code> enables the feature with
* writer-controlled parameter values; <code>MODE_EXPLICIT</code>
* enables the feature and allows the use of a <code>set</code> method
* to provide additional parameters; and
* <code>MODE_COPY_FROM_METADATA</code> copies relevant parameter
* values from the stream and image metadata objects passed to the
* writer. The default for all features is
* <code>MODE_COPY_FROM_METADATA</code>. Non-standard features
* supplied in subclasses are encouraged, but not required to use a
* similar scheme.
*
* <p> Plug-in writers may extend the functionality of
* <code>ImageWriteParam</code> by providing a subclass that implements
* additional, plug-in specific interfaces. It is up to the plug-in
* to document what interfaces are available and how they are to be
* used. Writers will silently ignore any extended features of an
* <code>ImageWriteParam</code> subclass of which they are not aware.
* Also, they may ignore any optional features that they normally
* disable when creating their own <code>ImageWriteParam</code>
* instances via <code>getDefaultWriteParam</code>.
*
* <p> Note that unless a query method exists for a capability, it must
* be supported by all <code>ImageWriter</code> implementations
* (<i>e.g.</i> progressive encoding is optional, but subsampling must be
* supported).
*
*
* @see ImageReadParam
*/
public class ImageWriteParam extends IIOParam {
/**
* A constant value that may be passed into methods such as
* <code>setTilingMode</code>, <code>setProgressiveMode</code>,
* and <code>setCompressionMode</code> to disable a feature for
* future writes. That is, when this mode is set the stream will
* <b>not</b> be tiled, progressive, or compressed, and the
* relevant accessor methods will throw an
* <code>IllegalStateException</code>.
*
* @see #MODE_EXPLICIT
* @see #MODE_COPY_FROM_METADATA
* @see #MODE_DEFAULT
* @see #setProgressiveMode
* @see #getProgressiveMode
* @see #setTilingMode
* @see #getTilingMode
* @see #setCompressionMode
* @see #getCompressionMode
*/
public static final int MODE_DISABLED = 0;
/**
* A constant value that may be passed into methods such as
* <code>setTilingMode</code>,
* <code>setProgressiveMode</code>, and
* <code>setCompressionMode</code> to enable that feature for
* future writes. That is, when this mode is enabled the stream
* will be tiled, progressive, or compressed according to a
* sensible default chosen internally by the writer in a plug-in
* dependent way, and the relevant accessor methods will
* throw an <code>IllegalStateException</code>.
*
* @see #MODE_DISABLED
* @see #MODE_EXPLICIT
* @see #MODE_COPY_FROM_METADATA
* @see #setProgressiveMode
* @see #getProgressiveMode
* @see #setTilingMode
* @see #getTilingMode
* @see #setCompressionMode
* @see #getCompressionMode
*/
public static final int MODE_DEFAULT = 1;
/**
* A constant value that may be passed into methods such as
* <code>setTilingMode</code> or <code>setCompressionMode</code>
* to enable a feature for future writes. That is, when this mode
* is set the stream will be tiled or compressed according to
* additional information supplied to the corresponding
* <code>set</code> methods in this class and retrievable from the
* corresponding <code>get</code> methods. Note that this mode is
* not supported for progressive output.
*
* @see #MODE_DISABLED
* @see #MODE_COPY_FROM_METADATA
* @see #MODE_DEFAULT
* @see #setProgressiveMode
* @see #getProgressiveMode
* @see #setTilingMode
* @see #getTilingMode
* @see #setCompressionMode
* @see #getCompressionMode
*/
public static final int MODE_EXPLICIT = 2;
/**
* A constant value that may be passed into methods such as
* <code>setTilingMode</code>, <code>setProgressiveMode</code>, or
* <code>setCompressionMode</code> to enable that feature for
* future writes. That is, when this mode is enabled the stream
* will be tiled, progressive, or compressed based on the contents
* of stream and/or image metadata passed into the write
* operation, and any relevant accessor methods will throw an
* <code>IllegalStateException</code>.
*
* <p> This is the default mode for all features, so that a read
* including metadata followed by a write including metadata will
* preserve as much information as possible.
*
* @see #MODE_DISABLED
* @see #MODE_EXPLICIT
* @see #MODE_DEFAULT
* @see #setProgressiveMode
* @see #getProgressiveMode
* @see #setTilingMode
* @see #getTilingMode
* @see #setCompressionMode
* @see #getCompressionMode
*/
public static final int MODE_COPY_FROM_METADATA = 3;
// If more modes are added, this should be updated.
private static final int MAX_MODE = MODE_COPY_FROM_METADATA;
/**
* A <code>boolean</code> that is <code>true</code> if this
* <code>ImageWriteParam</code> allows tile width and tile height
* parameters to be set. By default, the value is
* <code>false</code>. Subclasses must set the value manually.
*
* <p> Subclasses that do not support writing tiles should ensure
* that this value is set to <code>false</code>.
*/
protected boolean canWriteTiles = false;
/**
* The mode controlling tiling settings, which Must be
* set to one of the four <code>MODE_*</code> values. The default
* is <code>MODE_COPY_FROM_METADATA</code>.
*
* <p> Subclasses that do not writing tiles may ignore this value.
*
* @see #MODE_DISABLED
* @see #MODE_EXPLICIT
* @see #MODE_COPY_FROM_METADATA
* @see #MODE_DEFAULT
* @see #setTilingMode
* @see #getTilingMode
*/
protected int tilingMode = MODE_COPY_FROM_METADATA;
/**
* An array of preferred tile size range pairs. The default value
* is <code>null</code>, which indicates that there are no
* preferred sizes. If the value is non-<code>null</code>, it
* must have an even length of at least two.
*
* <p> Subclasses that do not support writing tiles may ignore
* this value.
*
* @see #getPreferredTileSizes
*/
protected Dimension[] preferredTileSizes = null;
/**
* A <code>boolean</code> that is <code>true</code> if tiling
* parameters have been specified.
*
* <p> Subclasses that do not support writing tiles may ignore
* this value.
*/
protected boolean tilingSet = false;
/**
* The width of each tile if tiling has been set, or 0 otherwise.
*
* <p> Subclasses that do not support tiling may ignore this
* value.
*/
protected int tileWidth = 0;
/**
* The height of each tile if tiling has been set, or 0 otherwise.
* The initial value is <code>0</code>.
*
* <p> Subclasses that do not support tiling may ignore this
* value.
*/
protected int tileHeight = 0;
/**
* A <code>boolean</code> that is <code>true</code> if this
* <code>ImageWriteParam</code> allows tiling grid offset
* parameters to be set. By default, the value is
* <code>false</code>. Subclasses must set the value manually.
*
* <p> Subclasses that do not support writing tiles, or that
* support writing but not offsetting tiles must ensure that this
* value is set to <code>false</code>.
*/
protected boolean canOffsetTiles = false;
/**
* The amount by which the tile grid origin should be offset
* horizontally from the image origin if tiling has been set,
* or 0 otherwise. The initial value is <code>0</code>.
*
* <p> Subclasses that do not support offsetting tiles may ignore
* this value.
*/
protected int tileGridXOffset = 0;
/**
* The amount by which the tile grid origin should be offset
* vertically from the image origin if tiling has been set,
* or 0 otherwise. The initial value is <code>0</code>.
*
* <p> Subclasses that do not support offsetting tiles may ignore
* this value.
*/
protected int tileGridYOffset = 0;
/**
* A <code>boolean</code> that is <code>true</code> if this
* <code>ImageWriteParam</code> allows images to be written as a
* progressive sequence of increasing quality passes. By default,
* the value is <code>false</code>. Subclasses must set the value
* manually.
*
* <p> Subclasses that do not support progressive encoding must
* ensure that this value is set to <code>false</code>.
*/
protected boolean canWriteProgressive = false;
/**
* The mode controlling progressive encoding, which must be set to
* one of the four <code>MODE_*</code> values, except
* <code>MODE_EXPLICIT</code>. The default is
* <code>MODE_COPY_FROM_METADATA</code>.
*
* <p> Subclasses that do not support progressive encoding may
* ignore this value.
*
* @see #MODE_DISABLED
* @see #MODE_EXPLICIT
* @see #MODE_COPY_FROM_METADATA
* @see #MODE_DEFAULT
* @see #setProgressiveMode
* @see #getProgressiveMode
*/
protected int progressiveMode = MODE_COPY_FROM_METADATA;
/**
* A <code>boolean</code> that is <code>true</code> if this writer
* can write images using compression. By default, the value is
* <code>false</code>. Subclasses must set the value manually.
*
* <p> Subclasses that do not support compression must ensure that
* this value is set to <code>false</code>.
*/
protected boolean canWriteCompressed = false;
/**
* The mode controlling compression settings, which must be set to
* one of the four <code>MODE_*</code> values. The default is
* <code>MODE_COPY_FROM_METADATA</code>.
*
* <p> Subclasses that do not support compression may ignore this
* value.
*
* @see #MODE_DISABLED
* @see #MODE_EXPLICIT
* @see #MODE_COPY_FROM_METADATA
* @see #MODE_DEFAULT
* @see #setCompressionMode
* @see #getCompressionMode
*/
protected int compressionMode = MODE_COPY_FROM_METADATA;
/**
* An array of <code>String</code>s containing the names of the
* available compression types. Subclasses must set the value
* manually.
*
* <p> Subclasses that do not support compression may ignore this
* value.
*/
protected String[] compressionTypes = null;
/**
* A <code>String</code> containing the name of the current
* compression type, or <code>null</code> if none is set.
*
* <p> Subclasses that do not support compression may ignore this
* value.
*/
protected String compressionType = null;
/**
* A <code>float</code> containing the current compression quality
* setting. The initial value is <code>1.0F</code>.
*
* <p> Subclasses that do not support compression may ignore this
* value.
*/
protected float compressionQuality = 1.0F;
/**
* A <code>Locale</code> to be used to localize compression type
* names and quality descriptions, or <code>null</code> to use a
* default <code>Locale</code>. Subclasses must set the value
* manually.
*/
protected Locale locale = null;
/**
* Constructs an empty <code>ImageWriteParam</code>. It is up to
* the subclass to set up the instance variables properly.
*/
protected ImageWriteParam() {}
/**
* Constructs an <code>ImageWriteParam</code> set to use a
* given <code>Locale</code>.
*
* @param locale a <code>Locale</code> to be used to localize
* compression type names and quality descriptions, or
* <code>null</code>.
*/
public ImageWriteParam(Locale locale) {
this.locale = locale;
}
// Return a deep copy of the array
private static Dimension[] clonePreferredTileSizes(Dimension[] sizes) {
if (sizes == null) {
return null;
}
Dimension[] temp = new Dimension[sizes.length];
for (int i = 0; i < sizes.length; i++) {
temp[i] = new Dimension(sizes[i]);
}
return temp;
}
/**
* Returns the currently set <code>Locale</code>, or
* <code>null</code> if only a default <code>Locale</code> is
* supported.
*
* @return the current <code>Locale</code>, or <code>null</code>.
*/
public Locale getLocale() {
return locale;
}
/**
* Returns <code>true</code> if the writer can perform tiling
* while writing. If this method returns <code>false</code>, then
* <code>setTiling</code> will throw an
* <code>UnsupportedOperationException</code>.
*
* @return <code>true</code> if the writer supports tiling.
*
* @see #canOffsetTiles()
* @see #setTiling(int, int, int, int)
*/
public boolean canWriteTiles() {
return canWriteTiles;
}
/**
* Returns <code>true</code> if the writer can perform tiling with
* non-zero grid offsets while writing. If this method returns
* <code>false</code>, then <code>setTiling</code> will throw an
* <code>UnsupportedOperationException</code> if the grid offset
* arguments are not both zero. If <code>canWriteTiles</code>
* returns <code>false</code>, this method will return
* <code>false</code> as well.
*
* @return <code>true</code> if the writer supports non-zero tile
* offsets.
*
* @see #canWriteTiles()
* @see #setTiling(int, int, int, int)
*/
public boolean canOffsetTiles() {
return canOffsetTiles;
}
/**
* Determines whether the image will be tiled in the output
* stream and, if it will, how the tiling parameters will be
* determined. The modes are interpreted as follows:
*
* <ul>
*
* <li><code>MODE_DISABLED</code> - The image will not be tiled.
* <code>setTiling</code> will throw an
* <code>IllegalStateException</code>.
*
* <li><code>MODE_DEFAULT</code> - The image will be tiled using
* default parameters. <code>setTiling</code> will throw an
* <code>IllegalStateException</code>.
*
* <li><code>MODE_EXPLICIT</code> - The image will be tiled
* according to parameters given in the {@link #setTiling setTiling}
* method. Any previously set tiling parameters are discarded.
*
* <li><code>MODE_COPY_FROM_METADATA</code> - The image will
* conform to the metadata object passed in to a write.
* <code>setTiling</code> will throw an
* <code>IllegalStateException</code>.
*
* </ul>
*
* @param mode The mode to use for tiling.
*
* @exception UnsupportedOperationException if
* <code>canWriteTiles</code> returns <code>false</code>.
* @exception IllegalArgumentException if <code>mode</code> is not
* one of the modes listed above.
*
* @see #setTiling
* @see #getTilingMode
*/
public void setTilingMode(int mode) {
if (canWriteTiles() == false) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (mode < MODE_DISABLED || mode > MAX_MODE) {
throw new IllegalArgumentException("Illegal value for mode!");
}
this.tilingMode = mode;
if (mode == MODE_EXPLICIT) {
unsetTiling();
}
}
/**
* Returns the current tiling mode, if tiling is supported.
* Otherwise throws an <code>UnsupportedOperationException</code>.
*
* @return the current tiling mode.
*
* @exception UnsupportedOperationException if
* <code>canWriteTiles</code> returns <code>false</code>.
*
* @see #setTilingMode
*/
public int getTilingMode() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported");
}
return tilingMode;
}
/**
* Returns an array of <code>Dimension</code>s indicating the
* legal size ranges for tiles as they will be encoded in the
* output file or stream. The returned array is a copy.
*
* <p> The information is returned as a set of pairs; the first
* element of a pair contains an (inclusive) minimum width and
* height, and the second element contains an (inclusive) maximum
* width and height. Together, each pair defines a valid range of
* sizes. To specify a fixed size, use the same width and height
* for both elements. To specify an arbitrary range, a value of
* <code>null</code> is used in place of an actual array of
* <code>Dimension</code>s.
*
* <p> If no array is specified on the constructor, but tiling is
* allowed, then this method returns <code>null</code>.
*
* @exception UnsupportedOperationException if the plug-in does
* not support tiling.
*
* @return an array of <code>Dimension</code>s with an even length
* of at least two, or <code>null</code>.
*/
public Dimension[] getPreferredTileSizes() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported");
}
return clonePreferredTileSizes(preferredTileSizes);
}
/**
* Specifies that the image should be tiled in the output stream.
* The <code>tileWidth</code> and <code>tileHeight</code>
* parameters specify the width and height of the tiles in the
* file. If the tile width or height is greater than the width or
* height of the image, the image is not tiled in that dimension.
*
* <p> If <code>canOffsetTiles</code> returns <code>false</code>,
* then the <code>tileGridXOffset</code> and
* <code>tileGridYOffset</code> parameters must be zero.
*
* @param tileWidth the width of each tile.
* @param tileHeight the height of each tile.
* @param tileGridXOffset the horizontal offset of the tile grid.
* @param tileGridYOffset the vertical offset of the tile grid.
*
* @exception UnsupportedOperationException if the plug-in does not
* support tiling.
* @exception IllegalStateException if the tiling mode is not
* <code>MODE_EXPLICIT</code>.
* @exception UnsupportedOperationException if the plug-in does not
* support grid offsets, and the grid offsets are not both zero.
* @exception IllegalArgumentException if the tile size is not
* within one of the allowable ranges returned by
* <code>getPreferredTileSizes</code>.
* @exception IllegalArgumentException if <code>tileWidth</code>
* or <code>tileHeight</code> is less than or equal to 0.
*
* @see #canWriteTiles
* @see #canOffsetTiles
* @see #getTileWidth()
* @see #getTileHeight()
* @see #getTileGridXOffset()
* @see #getTileGridYOffset()
*/
public void setTiling(int tileWidth,
int tileHeight,
int tileGridXOffset,
int tileGridYOffset) {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (getTilingMode() != MODE_EXPLICIT) {
throw new IllegalStateException("Tiling mode not MODE_EXPLICIT!");
}
if (tileWidth <= 0 || tileHeight <= 0) {
throw new IllegalArgumentException
("tile dimensions are non-positive!");
}
boolean tilesOffset = (tileGridXOffset != 0) || (tileGridYOffset != 0);
if (!canOffsetTiles() && tilesOffset) {
throw new UnsupportedOperationException("Can't offset tiles!");
}
if (preferredTileSizes != null) {
boolean ok = true;
for (int i = 0; i < preferredTileSizes.length; i += 2) {
Dimension min = preferredTileSizes[i];
Dimension max = preferredTileSizes[i+1];
if ((tileWidth < min.width) ||
(tileWidth > max.width) ||
(tileHeight < min.height) ||
(tileHeight > max.height)) {
ok = false;
break;
}
}
if (!ok) {
throw new IllegalArgumentException("Illegal tile size!");
}
}
this.tilingSet = true;
this.tileWidth = tileWidth;
this.tileHeight = tileHeight;
this.tileGridXOffset = tileGridXOffset;
this.tileGridYOffset = tileGridYOffset;
}
/**
* Removes any previous tile grid parameters specified by calls to
* <code>setTiling</code>.
*
* <p> The default implementation sets the instance variables
* <code>tileWidth</code>, <code>tileHeight</code>,
* <code>tileGridXOffset</code>, and
* <code>tileGridYOffset</code> to <code>0</code>.
*
* @exception UnsupportedOperationException if the plug-in does not
* support tiling.
* @exception IllegalStateException if the tiling mode is not
* <code>MODE_EXPLICIT</code>.
*
* @see #setTiling(int, int, int, int)
*/
public void unsetTiling() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (getTilingMode() != MODE_EXPLICIT) {
throw new IllegalStateException("Tiling mode not MODE_EXPLICIT!");
}
this.tilingSet = false;
this.tileWidth = 0;
this.tileHeight = 0;
this.tileGridXOffset = 0;
this.tileGridYOffset = 0;
}
/**
* Returns the width of each tile in an image as it will be
* written to the output stream. If tiling parameters have not
* been set, an <code>IllegalStateException</code> is thrown.
*
* @return the tile width to be used for encoding.
*
* @exception UnsupportedOperationException if the plug-in does not
* support tiling.
* @exception IllegalStateException if the tiling mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the tiling parameters have
* not been set.
*
* @see #setTiling(int, int, int, int)
* @see #getTileHeight()
*/
public int getTileWidth() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (getTilingMode() != MODE_EXPLICIT) {
throw new IllegalStateException("Tiling mode not MODE_EXPLICIT!");
}
if (!tilingSet) {
throw new IllegalStateException("Tiling parameters not set!");
}
return tileWidth;
}
/**
* Returns the height of each tile in an image as it will be written to
* the output stream. If tiling parameters have not
* been set, an <code>IllegalStateException</code> is thrown.
*
* @return the tile height to be used for encoding.
*
* @exception UnsupportedOperationException if the plug-in does not
* support tiling.
* @exception IllegalStateException if the tiling mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the tiling parameters have
* not been set.
*
* @see #setTiling(int, int, int, int)
* @see #getTileWidth()
*/
public int getTileHeight() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (getTilingMode() != MODE_EXPLICIT) {
throw new IllegalStateException("Tiling mode not MODE_EXPLICIT!");
}
if (!tilingSet) {
throw new IllegalStateException("Tiling parameters not set!");
}
return tileHeight;
}
/**
* Returns the horizontal tile grid offset of an image as it will
* be written to the output stream. If tiling parameters have not
* been set, an <code>IllegalStateException</code> is thrown.
*
* @return the tile grid X offset to be used for encoding.
*
* @exception UnsupportedOperationException if the plug-in does not
* support tiling.
* @exception IllegalStateException if the tiling mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the tiling parameters have
* not been set.
*
* @see #setTiling(int, int, int, int)
* @see #getTileGridYOffset()
*/
public int getTileGridXOffset() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (getTilingMode() != MODE_EXPLICIT) {
throw new IllegalStateException("Tiling mode not MODE_EXPLICIT!");
}
if (!tilingSet) {
throw new IllegalStateException("Tiling parameters not set!");
}
return tileGridXOffset;
}
/**
* Returns the vertical tile grid offset of an image as it will
* be written to the output stream. If tiling parameters have not
* been set, an <code>IllegalStateException</code> is thrown.
*
* @return the tile grid Y offset to be used for encoding.
*
* @exception UnsupportedOperationException if the plug-in does not
* support tiling.
* @exception IllegalStateException if the tiling mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the tiling parameters have
* not been set.
*
* @see #setTiling(int, int, int, int)
* @see #getTileGridXOffset()
*/
public int getTileGridYOffset() {
if (!canWriteTiles()) {
throw new UnsupportedOperationException("Tiling not supported!");
}
if (getTilingMode() != MODE_EXPLICIT) {
throw new IllegalStateException("Tiling mode not MODE_EXPLICIT!");
}
if (!tilingSet) {
throw new IllegalStateException("Tiling parameters not set!");
}
return tileGridYOffset;
}
/**
* Returns <code>true</code> if the writer can write out images
* as a series of passes of progressively increasing quality.
*
* @return <code>true</code> if the writer supports progressive
* encoding.
*
* @see #setProgressiveMode
* @see #getProgressiveMode
*/
public boolean canWriteProgressive() {
return canWriteProgressive;
}
/**
* Specifies that the writer is to write the image out in a
* progressive mode such that the stream will contain a series of
* scans of increasing quality. If progressive encoding is not
* supported, an <code>UnsupportedOperationException</code> will
* be thrown.
*
* <p> The mode argument determines how
* the progression parameters are chosen, and must be either
* <code>MODE_DISABLED</code>,
* <code>MODE_COPY_FROM_METADATA</code>, or
* <code>MODE_DEFAULT</code>. Otherwise an
* <code>IllegalArgumentException</code> is thrown.
*
* <p> The modes are interpreted as follows:
*
* <ul>
* <li><code>MODE_DISABLED</code> - No progression. Use this to
* turn off progression.
*
* <li><code>MODE_COPY_FROM_METADATA</code> - The output image
* will use whatever progression parameters are found in the
* metadata objects passed into the writer.
*
* <li><code>MODE_DEFAULT</code> - The image will be written
* progressively, with parameters chosen by the writer.
* </ul>
*
* <p> The default is <code>MODE_COPY_FROM_METADATA</code>.
*
* @param mode The mode for setting progression in the output
* stream.
*
* @exception UnsupportedOperationException if the writer does not
* support progressive encoding.
* @exception IllegalArgumentException if <code>mode</code> is not
* one of the modes listed above.
*
* @see #getProgressiveMode
*/
public void setProgressiveMode(int mode) {
if (!canWriteProgressive()) {
throw new UnsupportedOperationException(
"Progressive output not supported");
}
if (mode < MODE_DISABLED || mode > MAX_MODE) {
throw new IllegalArgumentException("Illegal value for mode!");
}
if (mode == MODE_EXPLICIT) {
throw new IllegalArgumentException(
"MODE_EXPLICIT not supported for progressive output");
}
this.progressiveMode = mode;
}
/**
* Returns the current mode for writing the stream in a
* progressive manner.
*
* @return the current mode for progressive encoding.
*
* @exception UnsupportedOperationException if the writer does not
* support progressive encoding.
*
* @see #setProgressiveMode
*/
public int getProgressiveMode() {
if (!canWriteProgressive()) {
throw new UnsupportedOperationException
("Progressive output not supported");
}
return progressiveMode;
}
/**
* Returns <code>true</code> if this writer supports compression.
*
* @return <code>true</code> if the writer supports compression.
*/
public boolean canWriteCompressed() {
return canWriteCompressed;
}
/**
* Specifies whether compression is to be performed, and if so how
* compression parameters are to be determined. The <code>mode</code>
* argument must be one of the four modes, interpreted as follows:
*
* <ul>
* <li><code>MODE_DISABLED</code> - If the mode is set to
* <code>MODE_DISABLED</code>, methods that query or modify the
* compression type or parameters will throw an
* <code>IllegalStateException</code> (if compression is
* normally supported by the plug-in). Some writers, such as JPEG,
* do not normally offer uncompressed output. In this case, attempting
* to set the mode to <code>MODE_DISABLED</code> will throw an
* <code>UnsupportedOperationException</code> and the mode will not be
* changed.
*
* <li><code>MODE_EXPLICIT</code> - Compress using the
* compression type and quality settings specified in this
* <code>ImageWriteParam</code>. Any previously set compression
* parameters are discarded.
*
* <li><code>MODE_COPY_FROM_METADATA</code> - Use whatever
* compression parameters are specified in metadata objects
* passed in to the writer.
*
* <li><code>MODE_DEFAULT</code> - Use default compression
* parameters.
* </ul>
*
* <p> The default is <code>MODE_COPY_FROM_METADATA</code>.
*
* @param mode The mode for setting compression in the output
* stream.
*
* @exception UnsupportedOperationException if the writer does not
* support compression, or does not support the requested mode.
* @exception IllegalArgumentException if <code>mode</code> is not
* one of the modes listed above.
*
* @see #getCompressionMode
*/
public void setCompressionMode(int mode) {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (mode < MODE_DISABLED || mode > MAX_MODE) {
throw new IllegalArgumentException("Illegal value for mode!");
}
this.compressionMode = mode;
if (mode == MODE_EXPLICIT) {
unsetCompression();
}
}
/**
* Returns the current compression mode, if compression is
* supported.
*
* @return the current compression mode.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
*
* @see #setCompressionMode
*/
public int getCompressionMode() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
return compressionMode;
}
/**
* Returns a list of available compression types, as an array or
* <code>String</code>s, or <code>null</code> if a compression
* type may not be chosen using these interfaces. The array
* returned is a copy.
*
* <p> If the writer only offers a single, mandatory form of
* compression, it is not necessary to provide any named
* compression types. Named compression types should only be
* used where the user is able to make a meaningful choice
* between different schemes.
*
* <p> The default implementation checks if compression is
* supported and throws an
* <code>UnsupportedOperationException</code> if not. Otherwise,
* it returns a clone of the <code>compressionTypes</code>
* instance variable if it is non-<code>null</code>, or else
* returns <code>null</code>.
*
* @return an array of <code>String</code>s containing the
* (non-localized) names of available compression types, or
* <code>null</code>.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
*/
public String[] getCompressionTypes() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported");
}
if (compressionTypes == null) {
return null;
}
return (String[])compressionTypes.clone();
}
/**
* Sets the compression type to one of the values indicated by
* <code>getCompressionTypes</code>. If a value of
* <code>null</code> is passed in, any previous setting is
* removed.
*
* <p> The default implementation checks whether compression is
* supported and the compression mode is
* <code>MODE_EXPLICIT</code>. If so, it calls
* <code>getCompressionTypes</code> and checks if
* <code>compressionType</code> is one of the legal values. If it
* is, the <code>compressionType</code> instance variable is set.
* If <code>compressionType</code> is <code>null</code>, the
* instance variable is set without performing any checking.
*
* @param compressionType one of the <code>String</code>s returned
* by <code>getCompressionTypes</code>, or <code>null</code> to
* remove any previous setting.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception UnsupportedOperationException if there are no
* settable compression types.
* @exception IllegalArgumentException if
* <code>compressionType</code> is non-<code>null</code> but is not
* one of the values returned by <code>getCompressionTypes</code>.
*
* @see #getCompressionTypes
* @see #getCompressionType
* @see #unsetCompression
*/
public void setCompressionType(String compressionType) {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
String[] legalTypes = getCompressionTypes();
if (legalTypes == null) {
throw new UnsupportedOperationException(
"No settable compression types");
}
if (compressionType != null) {
boolean found = false;
if (legalTypes != null) {
for (int i = 0; i < legalTypes.length; i++) {
if (compressionType.equals(legalTypes[i])) {
found = true;
break;
}
}
}
if (!found) {
throw new IllegalArgumentException("Unknown compression type!");
}
}
this.compressionType = compressionType;
}
/**
* Returns the currently set compression type, or
* <code>null</code> if none has been set. The type is returned
* as a <code>String</code> from among those returned by
* <code>getCompressionTypes</code>.
* If no compression type has been set, <code>null</code> is
* returned.
*
* <p> The default implementation checks whether compression is
* supported and the compression mode is
* <code>MODE_EXPLICIT</code>. If so, it returns the value of the
* <code>compressionType</code> instance variable.
*
* @return the current compression type as a <code>String</code>,
* or <code>null</code> if no type is set.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
*
* @see #setCompressionType
*/
public String getCompressionType() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
return compressionType;
}
/**
* Removes any previous compression type and quality settings.
*
* <p> The default implementation sets the instance variable
* <code>compressionType</code> to <code>null</code>, and the
* instance variable <code>compressionQuality</code> to
* <code>1.0F</code>.
*
* @exception UnsupportedOperationException if the plug-in does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
*
* @see #setCompressionType
* @see #setCompressionQuality
*/
public void unsetCompression() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
this.compressionType = null;
this.compressionQuality = 1.0F;
}
/**
* Returns a localized version of the name of the current
* compression type, using the <code>Locale</code> returned by
* <code>getLocale</code>.
*
* <p> The default implementation checks whether compression is
* supported and the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>compressionType</code> is <code>non-null</code> the value
* of <code>getCompressionType</code> is returned as a
* convenience.
*
* @return a <code>String</code> containing a localized version of
* the name of the current compression type.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if no compression type is set.
*/
public String getLocalizedCompressionTypeName() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if (getCompressionType() == null) {
throw new IllegalStateException("No compression type set!");
}
return getCompressionType();
}
/**
* Returns <code>true</code> if the current compression type
* provides lossless compression. If a plug-in provides only
* one mandatory compression type, then this method may be
* called without calling <code>setCompressionType</code> first.
*
* <p> If there are multiple compression types but none has
* been set, an <code>IllegalStateException</code> is thrown.
*
* <p> The default implementation checks whether compression is
* supported and the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>getCompressionTypes()</code> is <code>null</code> or
* <code>getCompressionType()</code> is non-<code>null</code>
* <code>true</code> is returned as a convenience.
*
* @return <code>true</code> if the current compression type is
* lossless.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the set of legal
* compression types is non-<code>null</code> and the current
* compression type is <code>null</code>.
*/
public boolean isCompressionLossless() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if ((getCompressionTypes() != null) &&
(getCompressionType() == null)) {
throw new IllegalStateException("No compression type set!");
}
return true;
}
/**
* Sets the compression quality to a value between <code>0</code>
* and <code>1</code>. Only a single compression quality setting
* is supported by default; writers can provide extended versions
* of <code>ImageWriteParam</code> that offer more control. For
* lossy compression schemes, the compression quality should
* control the tradeoff between file size and image quality (for
* example, by choosing quantization tables when writing JPEG
* images). For lossless schemes, the compression quality may be
* used to control the tradeoff between file size and time taken
* to perform the compression (for example, by optimizing row
* filters and setting the ZLIB compression level when writing
* PNG images).
*
* <p> A compression quality setting of 0.0 is most generically
* interpreted as "high compression is important," while a setting of
* 1.0 is most generically interpreted as "high image quality is
* important."
*
* <p> If there are multiple compression types but none has been
* set, an <code>IllegalStateException</code> is thrown.
*
* <p> The default implementation checks that compression is
* supported, and that the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>getCompressionTypes()</code> returns <code>null</code> or
* <code>compressionType</code> is non-<code>null</code> it sets
* the <code>compressionQuality</code> instance variable.
*
* @param quality a <code>float</code> between <code>0</code>and
* <code>1</code> indicating the desired quality level.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the set of legal
* compression types is non-<code>null</code> and the current
* compression type is <code>null</code>.
* @exception IllegalArgumentException if <code>quality</code> is
* not between <code>0</code>and <code>1</code>, inclusive.
*
* @see #getCompressionQuality
*/
public void setCompressionQuality(float quality) {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if (getCompressionTypes() != null && getCompressionType() == null) {
throw new IllegalStateException("No compression type set!");
}
if (quality < 0.0F || quality > 1.0F) {
throw new IllegalArgumentException("Quality out-of-bounds!");
}
this.compressionQuality = quality;
}
/**
* Returns the current compression quality setting.
*
* <p> If there are multiple compression types but none has been
* set, an <code>IllegalStateException</code> is thrown.
*
* <p> The default implementation checks that compression is
* supported and that the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>getCompressionTypes()</code> is <code>null</code> or
* <code>getCompressionType()</code> is non-<code>null</code>, it
* returns the value of the <code>compressionQuality</code>
* instance variable.
*
* @return the current compression quality setting.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the set of legal
* compression types is non-<code>null</code> and the current
* compression type is <code>null</code>.
*
* @see #setCompressionQuality
*/
public float getCompressionQuality() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if ((getCompressionTypes() != null) &&
(getCompressionType() == null)) {
throw new IllegalStateException("No compression type set!");
}
return compressionQuality;
}
/**
* Returns a <code>float</code> indicating an estimate of the
* number of bits of output data for each bit of input image data
* at the given quality level. The value will typically lie
* between <code>0</code> and <code>1</code>, with smaller values
* indicating more compression. A special value of
* <code>-1.0F</code> is used to indicate that no estimate is
* available.
*
* <p> If there are multiple compression types but none has been set,
* an <code>IllegalStateException</code> is thrown.
*
* <p> The default implementation checks that compression is
* supported and the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>getCompressionTypes()</code> is <code>null</code> or
* <code>getCompressionType()</code> is non-<code>null</code>, and
* <code>quality</code> is within bounds, it returns
* <code>-1.0</code>.
*
* @param quality the quality setting whose bit rate is to be
* queried.
*
* @return an estimate of the compressed bit rate, or
* <code>-1.0F</code> if no estimate is available.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the set of legal
* compression types is non-<code>null</code> and the current
* compression type is <code>null</code>.
* @exception IllegalArgumentException if <code>quality</code> is
* not between <code>0</code>and <code>1</code>, inclusive.
*/
public float getBitRate(float quality) {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if ((getCompressionTypes() != null) &&
(getCompressionType() == null)) {
throw new IllegalStateException("No compression type set!");
}
if (quality < 0.0F || quality > 1.0F) {
throw new IllegalArgumentException("Quality out-of-bounds!");
}
return -1.0F;
}
/**
* Returns an array of <code>String</code>s that may be used along
* with <code>getCompressionQualityValues</code> as part of a user
* interface for setting or displaying the compression quality
* level. The <code>String</code> with index <code>i</code>
* provides a description of the range of quality levels between
* <code>getCompressionQualityValues[i]</code> and
* <code>getCompressionQualityValues[i + 1]</code>. Note that the
* length of the array returned from
* <code>getCompressionQualityValues</code> will always be one
* greater than that returned from
* <code>getCompressionQualityDescriptions</code>.
*
* <p> As an example, the strings "Good", "Better", and "Best"
* could be associated with the ranges <code>[0, .33)</code>,
* <code>[.33, .66)</code>, and <code>[.66, 1.0]</code>. In this
* case, <code>getCompressionQualityDescriptions</code> would
* return <code>{ "Good", "Better", "Best" }</code> and
* <code>getCompressionQualityValues</code> would return
* <code>{ 0.0F, .33F, .66F, 1.0F }</code>.
*
* <p> If no descriptions are available, <code>null</code> is
* returned. If <code>null</code> is returned from
* <code>getCompressionQualityValues</code>, this method must also
* return <code>null</code>.
*
* <p> The descriptions should be localized for the
* <code>Locale</code> returned by <code>getLocale</code>, if it
* is non-<code>null</code>.
*
* <p> If there are multiple compression types but none has been set,
* an <code>IllegalStateException</code> is thrown.
*
* <p> The default implementation checks that compression is
* supported and that the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>getCompressionTypes()</code> is <code>null</code> or
* <code>getCompressionType()</code> is non-<code>null</code>, it
* returns <code>null</code>.
*
* @return an array of <code>String</code>s containing localized
* descriptions of the compression quality levels.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the set of legal
* compression types is non-<code>null</code> and the current
* compression type is <code>null</code>.
*
* @see #getCompressionQualityValues
*/
public String[] getCompressionQualityDescriptions() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if ((getCompressionTypes() != null) &&
(getCompressionType() == null)) {
throw new IllegalStateException("No compression type set!");
}
return null;
}
/**
* Returns an array of <code>float</code>s that may be used along
* with <code>getCompressionQualityDescriptions</code> as part of a user
* interface for setting or displaying the compression quality
* level. See {@link #getCompressionQualityDescriptions
* getCompressionQualityDescriptions} for more information.
*
* <p> If no descriptions are available, <code>null</code> is
* returned. If <code>null</code> is returned from
* <code>getCompressionQualityDescriptions</code>, this method
* must also return <code>null</code>.
*
* <p> If there are multiple compression types but none has been set,
* an <code>IllegalStateException</code> is thrown.
*
* <p> The default implementation checks that compression is
* supported and that the compression mode is
* <code>MODE_EXPLICIT</code>. If so, if
* <code>getCompressionTypes()</code> is <code>null</code> or
* <code>getCompressionType()</code> is non-<code>null</code>, it
* returns <code>null</code>.
*
* @return an array of <code>float</code>s indicating the
* boundaries between the compression quality levels as described
* by the <code>String</code>s from
* <code>getCompressionQualityDescriptions</code>.
*
* @exception UnsupportedOperationException if the writer does not
* support compression.
* @exception IllegalStateException if the compression mode is not
* <code>MODE_EXPLICIT</code>.
* @exception IllegalStateException if the set of legal
* compression types is non-<code>null</code> and the current
* compression type is <code>null</code>.
*
* @see #getCompressionQualityDescriptions
*/
public float[] getCompressionQualityValues() {
if (!canWriteCompressed()) {
throw new UnsupportedOperationException(
"Compression not supported.");
}
if (getCompressionMode() != MODE_EXPLICIT) {
throw new IllegalStateException
("Compression mode not MODE_EXPLICIT!");
}
if ((getCompressionTypes() != null) &&
(getCompressionType() == null)) {
throw new IllegalStateException("No compression type set!");
}
return null;
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yxljava/Java8Source.git
git@gitee.com:yxljava/Java8Source.git
yxljava
Java8Source
Java8Source
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /