开源 企业版 高校版 私有云 模力方舟 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
/
ImageReadParam.java
Java8Source
/
src
/
javax
/
imageio
/
ImageReadParam.java
ImageReadParam.java 19.07 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
/*
* Copyright (c) 1999, 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.awt.image.BufferedImage;
/**
* A class describing how a stream is to be decoded. Instances of
* this class or its subclasses are used to supply prescriptive
* "how-to" information to instances of <code>ImageReader</code>.
*
* <p> An image encoded as part of a file or stream may be thought of
* extending out in multiple dimensions: the spatial dimensions of
* width and height, a number of bands, and a number of progressive
* decoding passes. This class allows a contiguous (hyper)rectangular
* subarea of the image in all of these dimensions to be selected for
* decoding. Additionally, the spatial dimensions may be subsampled
* discontinuously. Finally, color and format conversions may be
* specified by controlling the <code>ColorModel</code> and
* <code>SampleModel</code> of the destination image, either by
* providing a <code>BufferedImage</code> or by using an
* <code>ImageTypeSpecifier</code>.
*
* <p> An <code>ImageReadParam</code> object is used to specify how an
* image, or a set of images, will be converted on input from
* a stream in the context of the Java Image I/O framework. A plug-in for a
* specific image format will return instances of
* <code>ImageReadParam</code> from the
* <code>getDefaultReadParam</code> method of its
* <code>ImageReader</code> implementation.
*
* <p> The state maintained by an instance of
* <code>ImageReadParam</code> is independent of any particular image
* being decoded. When actual decoding takes place, the values set in
* the read param are combined with the actual properties of the image
* being decoded from the stream and the destination
* <code>BufferedImage</code> that will receive the decoded pixel
* data. For example, the source region set using
* <code>setSourceRegion</code> will first be intersected with the
* actual valid source area. The result will be translated by the
* value returned by <code>getDestinationOffset</code>, and the
* resulting rectangle intersected with the actual valid destination
* area to yield the destination area that will be written.
*
* <p> The parameters specified by an <code>ImageReadParam</code> are
* applied to an image as follows. First, if a rendering size has
* been set by <code>setSourceRenderSize</code>, the entire decoded
* image is rendered at the size given by
* <code>getSourceRenderSize</code>. Otherwise, the image has its
* natural size given by <code>ImageReader.getWidth</code> and
* <code>ImageReader.getHeight</code>.
*
* <p> Next, the image is clipped against the source region
* specified by <code>getSourceXOffset</code>, <code>getSourceYOffset</code>,
* <code>getSourceWidth</code>, and <code>getSourceHeight</code>.
*
* <p> The resulting region is then subsampled according to the
* factors given in {@link IIOParam#setSourceSubsampling
* IIOParam.setSourceSubsampling}. The first pixel,
* the number of pixels per row, and the number of rows all depend
* on the subsampling settings.
* Call the minimum X and Y coordinates of the resulting rectangle
* (<code>minX</code>, <code>minY</code>), its width <code>w</code>
* and its height <code>h</code>.
*
* <p> This rectangle is offset by
* (<code>getDestinationOffset().x</code>,
* <code>getDestinationOffset().y</code>) and clipped against the
* destination bounds. If no destination image has been set, the
* destination is defined to have a width of
* <code>getDestinationOffset().x</code> + <code>w</code>, and a
* height of <code>getDestinationOffset().y</code> + <code>h</code> so
* that all pixels of the source region may be written to the
* destination.
*
* <p> Pixels that land, after subsampling, within the destination
* image, and that are written in one of the progressive passes
* specified by <code>getSourceMinProgressivePass</code> and
* <code>getSourceNumProgressivePasses</code> are passed along to the
* next step.
*
* <p> Finally, the source samples of each pixel are mapped into
* destination bands according to the algorithm described in the
* comment for <code>setDestinationBands</code>.
*
* <p> Plug-in writers may extend the functionality of
* <code>ImageReadParam</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. Readers will silently ignore any extended features of an
* <code>ImageReadParam</code> subclass of which they are not aware.
* Also, they may ignore any optional features that they normally
* disable when creating their own <code>ImageReadParam</code>
* instances via <code>getDefaultReadParam</code>.
*
* <p> Note that unless a query method exists for a capability, it must
* be supported by all <code>ImageReader</code> implementations
* (<i>e.g.</i> source render size is optional, but subsampling must be
* supported).
*
*
* @see ImageReader
* @see ImageWriter
* @see ImageWriteParam
*/
public class ImageReadParam extends IIOParam {
/**
* <code>true</code> if this <code>ImageReadParam</code> allows
* the source rendering dimensions to be set. By default, the
* value is <code>false</code>. Subclasses must set this value
* manually.
*
* <p> <code>ImageReader</code>s that do not support setting of
* the source render size should set this value to
* <code>false</code>.
*/
protected boolean canSetSourceRenderSize = false;
/**
* The desired rendering width and height of the source, if
* <code>canSetSourceRenderSize</code> is <code>true</code>, or
* <code>null</code>.
*
* <p> <code>ImageReader</code>s that do not support setting of
* the source render size may ignore this value.
*/
protected Dimension sourceRenderSize = null;
/**
* The current destination <code>BufferedImage</code>, or
* <code>null</code> if none has been set. By default, the value
* is <code>null</code>.
*/
protected BufferedImage destination = null;
/**
* The set of destination bands to be used, as an array of
* <code>int</code>s. By default, the value is <code>null</code>,
* indicating all destination bands should be written in order.
*/
protected int[] destinationBands = null;
/**
* The minimum index of a progressive pass to read from the
* source. By default, the value is set to 0, which indicates
* that passes starting with the first available pass should be
* decoded.
*
* <p> Subclasses should ensure that this value is
* non-negative.
*/
protected int minProgressivePass = 0;
/**
* The maximum number of progressive passes to read from the
* source. By default, the value is set to
* <code>Integer.MAX_VALUE</code>, which indicates that passes up
* to and including the last available pass should be decoded.
*
* <p> Subclasses should ensure that this value is positive.
* Additionally, if the value is not
* <code>Integer.MAX_VALUE</code>, then <code>minProgressivePass +
* numProgressivePasses - 1</code> should not exceed
* <code>Integer.MAX_VALUE</code>.
*/
protected int numProgressivePasses = Integer.MAX_VALUE;
/**
* Constructs an <code>ImageReadParam</code>.
*/
public ImageReadParam() {}
// Comment inherited
public void setDestinationType(ImageTypeSpecifier destinationType) {
super.setDestinationType(destinationType);
setDestination(null);
}
/**
* Supplies a <code>BufferedImage</code> to be used as the
* destination for decoded pixel data. The currently set image
* will be written to by the <code>read</code>,
* <code>readAll</code>, and <code>readRaster</code> methods, and
* a reference to it will be returned by those methods.
*
* <p> Pixel data from the aforementioned methods will be written
* starting at the offset specified by
* <code>getDestinationOffset</code>.
*
* <p> If <code>destination</code> is <code>null</code>, a
* newly-created <code>BufferedImage</code> will be returned by
* those methods.
*
* <p> At the time of reading, the image is checked to verify that
* its <code>ColorModel</code> and <code>SampleModel</code>
* correspond to one of the <code>ImageTypeSpecifier</code>s
* returned from the <code>ImageReader</code>'s
* <code>getImageTypes</code> method. If it does not, the reader
* will throw an <code>IIOException</code>.
*
* @param destination the BufferedImage to be written to, or
* <code>null</code>.
*
* @see #getDestination
*/
public void setDestination(BufferedImage destination) {
this.destination = destination;
}
/**
* Returns the <code>BufferedImage</code> currently set by the
* <code>setDestination</code> method, or <code>null</code>
* if none is set.
*
* @return the BufferedImage to be written to.
*
* @see #setDestination
*/
public BufferedImage getDestination() {
return destination;
}
/**
* Sets the indices of the destination bands where data
* will be placed. Duplicate indices are not allowed.
*
* <p> A <code>null</code> value indicates that all destination
* bands will be used.
*
* <p> Choosing a destination band subset will not affect the
* number of bands in the output image of a read if no destination
* image is specified; the created destination image will still
* have the same number of bands as if this method had never been
* called. If a different number of bands in the destination
* image is desired, an image must be supplied using the
* <code>ImageReadParam.setDestination</code> method.
*
* <p> At the time of reading or writing, an
* <code>IllegalArgumentException</code> will be thrown by the
* reader or writer if a value larger than the largest destination
* band index has been specified, or if the number of source bands
* and destination bands to be used differ. The
* <code>ImageReader.checkReadParamBandSettings</code> method may
* be used to automate this test.
*
* @param destinationBands an array of integer band indices to be
* used.
*
* @exception IllegalArgumentException if <code>destinationBands</code>
* contains a negative or duplicate value.
*
* @see #getDestinationBands
* @see #getSourceBands
* @see ImageReader#checkReadParamBandSettings
*/
public void setDestinationBands(int[] destinationBands) {
if (destinationBands == null) {
this.destinationBands = null;
} else {
int numBands = destinationBands.length;
for (int i = 0; i < numBands; i++) {
int band = destinationBands[i];
if (band < 0) {
throw new IllegalArgumentException("Band value < 0!");
}
for (int j = i + 1; j < numBands; j++) {
if (band == destinationBands[j]) {
throw new IllegalArgumentException("Duplicate band value!");
}
}
}
this.destinationBands = (int[])destinationBands.clone();
}
}
/**
* Returns the set of band indices where data will be placed.
* If no value has been set, <code>null</code> is returned to
* indicate that all destination bands will be used.
*
* @return the indices of the destination bands to be used,
* or <code>null</code>.
*
* @see #setDestinationBands
*/
public int[] getDestinationBands() {
if (destinationBands == null) {
return null;
} else {
return (int[])(destinationBands.clone());
}
}
/**
* Returns <code>true</code> if this reader allows the source
* image to be rendered at an arbitrary size as part of the
* decoding process, by means of the
* <code>setSourceRenderSize</code> method. If this method
* returns <code>false</code>, calls to
* <code>setSourceRenderSize</code> will throw an
* <code>UnsupportedOperationException</code>.
*
* @return <code>true</code> if setting source rendering size is
* supported.
*
* @see #setSourceRenderSize
*/
public boolean canSetSourceRenderSize() {
return canSetSourceRenderSize;
}
/**
* If the image is able to be rendered at an arbitrary size, sets
* the source width and height to the supplied values. Note that
* the values returned from the <code>getWidth</code> and
* <code>getHeight</code> methods on <code>ImageReader</code> are
* not affected by this method; they will continue to return the
* default size for the image. Similarly, if the image is also
* tiled the tile width and height are given in terms of the default
* size.
*
* <p> Typically, the width and height should be chosen such that
* the ratio of width to height closely approximates the aspect
* ratio of the image, as returned from
* <code>ImageReader.getAspectRatio</code>.
*
* <p> If this plug-in does not allow the rendering size to be
* set, an <code>UnsupportedOperationException</code> will be
* thrown.
*
* <p> To remove the render size setting, pass in a value of
* <code>null</code> for <code>size</code>.
*
* @param size a <code>Dimension</code> indicating the desired
* width and height.
*
* @exception IllegalArgumentException if either the width or the
* height is negative or 0.
* @exception UnsupportedOperationException if image resizing
* is not supported by this plug-in.
*
* @see #getSourceRenderSize
* @see ImageReader#getWidth
* @see ImageReader#getHeight
* @see ImageReader#getAspectRatio
*/
public void setSourceRenderSize(Dimension size)
throws UnsupportedOperationException {
if (!canSetSourceRenderSize()) {
throw new UnsupportedOperationException
("Can't set source render size!");
}
if (size == null) {
this.sourceRenderSize = null;
} else {
if (size.width <= 0 || size.height <= 0) {
throw new IllegalArgumentException("width or height <= 0!");
}
this.sourceRenderSize = (Dimension)size.clone();
}
}
/**
* Returns the width and height of the source image as it
* will be rendered during decoding, if they have been set via the
* <code>setSourceRenderSize</code> method. A
* <code>null</code>value indicates that no setting has been made.
*
* @return the rendered width and height of the source image
* as a <code>Dimension</code>.
*
* @see #setSourceRenderSize
*/
public Dimension getSourceRenderSize() {
return (sourceRenderSize == null) ?
null : (Dimension)sourceRenderSize.clone();
}
/**
* Sets the range of progressive passes that will be decoded.
* Passes outside of this range will be ignored.
*
* <p> A progressive pass is a re-encoding of the entire image,
* generally at progressively higher effective resolutions, but
* requiring greater transmission bandwidth. The most common use
* of progressive encoding is found in the JPEG format, where
* successive passes include more detailed representations of the
* high-frequency image content.
*
* <p> The actual number of passes to be decoded is determined
* during decoding, based on the number of actual passes available
* in the stream. Thus if <code>minPass + numPasses - 1</code> is
* larger than the index of the last available passes, decoding
* will end with that pass.
*
* <p> A value of <code>numPasses</code> of
* <code>Integer.MAX_VALUE</code> indicates that all passes from
* <code>minPass</code> forward should be read. Otherwise, the
* index of the last pass (<i>i.e.</i>, <code>minPass + numPasses
* - 1</code>) must not exceed <code>Integer.MAX_VALUE</code>.
*
* <p> There is no <code>unsetSourceProgressivePasses</code>
* method; the same effect may be obtained by calling
* <code>setSourceProgressivePasses(0, Integer.MAX_VALUE)</code>.
*
* @param minPass the index of the first pass to be decoded.
* @param numPasses the maximum number of passes to be decoded.
*
* @exception IllegalArgumentException if <code>minPass</code> is
* negative, <code>numPasses</code> is negative or 0, or
* <code>numPasses</code> is smaller than
* <code>Integer.MAX_VALUE</code> but <code>minPass +
* numPasses - 1</code> is greater than
* <code>INTEGER.MAX_VALUE</code>.
*
* @see #getSourceMinProgressivePass
* @see #getSourceMaxProgressivePass
*/
public void setSourceProgressivePasses(int minPass, int numPasses) {
if (minPass < 0) {
throw new IllegalArgumentException("minPass < 0!");
}
if (numPasses <= 0) {
throw new IllegalArgumentException("numPasses <= 0!");
}
if ((numPasses != Integer.MAX_VALUE) &&
(((minPass + numPasses - 1) & 0x80000000) != 0)) {
throw new IllegalArgumentException
("minPass + numPasses - 1 > INTEGER.MAX_VALUE!");
}
this.minProgressivePass = minPass;
this.numProgressivePasses = numPasses;
}
/**
* Returns the index of the first progressive pass that will be
* decoded. If no value has been set, 0 will be returned (which is
* the correct value).
*
* @return the index of the first pass that will be decoded.
*
* @see #setSourceProgressivePasses
* @see #getSourceNumProgressivePasses
*/
public int getSourceMinProgressivePass() {
return minProgressivePass;
}
/**
* If <code>getSourceNumProgressivePasses</code> is equal to
* <code>Integer.MAX_VALUE</code>, returns
* <code>Integer.MAX_VALUE</code>. Otherwise, returns
* <code>getSourceMinProgressivePass() +
* getSourceNumProgressivePasses() - 1</code>.
*
* @return the index of the last pass to be read, or
* <code>Integer.MAX_VALUE</code>.
*/
public int getSourceMaxProgressivePass() {
if (numProgressivePasses == Integer.MAX_VALUE) {
return Integer.MAX_VALUE;
} else {
return minProgressivePass + numProgressivePasses - 1;
}
}
/**
* Returns the number of the progressive passes that will be
* decoded. If no value has been set,
* <code>Integer.MAX_VALUE</code> will be returned (which is the
* correct value).
*
* @return the number of the passes that will be decoded.
*
* @see #setSourceProgressivePasses
* @see #getSourceMinProgressivePass
*/
public int getSourceNumProgressivePasses() {
return numProgressivePasses;
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

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

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

取消
提交

发行版

暂无发行版

贡献者

全部

近期动态

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

搜索帮助

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

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