Java Doc for IntegerInterleavedRaster.java in  » 6.0-JDK-Modules-sun » awt » sun » awt » image » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules sun » awt » sun.awt.image 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


sun.awt.image.SunWritableRaster
   sun.awt.image.IntegerComponentRaster
      sun.awt.image.IntegerInterleavedRaster

IntegerInterleavedRaster
public class IntegerInterleavedRaster extends IntegerComponentRaster (Code)
This class defines a Raster with pixels consisting of one or more 32-bit data elements stored in close proximity to each other in a integer array. The bit precision per data element is that of the data type (that is, the bit precision for this raster is 32). There is only one pixel stride and one scanline stride for all bands. For a given pixel, all samples fit in N data elements and these N data elements hold samples for only one pixel. This type of Raster can be used with a PackedColorModel.

For example, if there is only one data element per pixel, a SinglePixelPackedSampleModel can be used to represent multiple bands with a PackedColorModel (including a DirectColorModel) for color interpretation.
version:
   10 Feb 1997




Constructor Summary
public  IntegerInterleavedRaster(SampleModel sampleModel, Point origin)
     Constructs a IntegerInterleavedRaster with the given SampleModel. The Raster's upper left corner is origin and it is the same size as the SampleModel.
public  IntegerInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin)
     Constructs a IntegerInterleavedRaster with the given SampleModel and DataBuffer.
public  IntegerInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, IntegerInterleavedRaster parent)
     Constructs a IntegerInterleavedRaster with the given SampleModel, DataBuffer, and parent.

Method Summary
public  RastercreateChild(int x, int y, int width, int height, int x0, int y0, int bandList)
     Creates a subraster given a region of the raster.
public  WritableRastercreateCompatibleWritableRaster(int w, int h)
     Creates a raster with the same band layout but using a different width and height, and with new zeroed data arrays.
public  WritableRastercreateCompatibleWritableRaster()
     Creates a raster with the same data layout and the same width and height, and with new zeroed data arrays.
public  WritableRastercreateWritableChild(int x, int y, int width, int height, int x0, int y0, int bandList)
     Creates a subraster given a region of the raster.
public  ObjectgetDataElements(int x, int y, Object obj)
     Returns the data elements for all bands at the specified location.
public  ObjectgetDataElements(int x, int y, int w, int h, Object obj)
     Returns an array of data elements from the specified rectangular region. An ArrayIndexOutOfBounds exception will be thrown at runtime if the pixel coordinates are out of bounds. A ClassCastException will be thrown if the input object is non null and references anything other than an array of transferType.
 int[] bandData = (int[])raster.getDataElements(x, y, w, h, null);
 int numDataElements = raster.getNumDataElements();
 int[] pixel = new int[numDataElements];
 // To find a data element at location (x2, y2)
 System.arraycopy(bandData, ((y2-y)*w + (x2-x))*numDataElements,
 pixel, 0, numDataElements);
 

Parameters:
  x - The X coordinate of the upper left pixel location.
Parameters:
  y - The Y coordinate of the upper left pixel location.
Parameters:
  width - Width of the pixel rectangle.
Parameters:
  height - Height of the pixel rectangle.
Parameters:
  outData - An object reference to an array of type defined bygetTransferType() and length w*h*getNumDataElements().If null an array of appropriate type and size will beallocated.
public  intgetDataOffset(int band)
     Returns data offset for the specified band.
public  int[]getDataOffsets()
     Returns a copy of the data offsets array.
public  int[]getDataStorage()
     Returns a reference to the data array.
public  intgetPixelStride()
     Returns pixel stride -- the number of data array elements between two samples for the same band on the same scanline.
public  intgetScanlineStride()
     Returns the scanline stride -- the number of data array elements between a given sample and the sample in the same column of the next row.
public  voidsetDataElements(int x, int y, Object obj)
     Stores the data elements for all bands at the specified location.
public  voidsetDataElements(int x, int y, Raster inRaster)
     Stores the Raster data at the specified location.
public  voidsetDataElements(int x, int y, int w, int h, Object obj)
     Stores an array of data elements into the specified rectangular region. An ArrayIndexOutOfBounds exception will be thrown at runtime if the pixel coordinates are out of bounds. A ClassCastException will be thrown if the input object is non null and references anything other than an array of transferType. The data elements in the data array are assumed to be packed.
public  StringtoString()
    


Constructor Detail
IntegerInterleavedRaster
public IntegerInterleavedRaster(SampleModel sampleModel, Point origin)(Code)
Constructs a IntegerInterleavedRaster with the given SampleModel. The Raster's upper left corner is origin and it is the same size as the SampleModel. A DataBuffer large enough to describe the Raster is automatically created. SampleModel must be of type SinglePixelPackedSampleModel.
Parameters:
  sampleModel - The SampleModel that specifies the layout.
Parameters:
  origin - The Point that specified the origin.



IntegerInterleavedRaster
public IntegerInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin)(Code)
Constructs a IntegerInterleavedRaster with the given SampleModel and DataBuffer. The Raster's upper left corner is origin and it is the same sizes the SampleModel. The DataBuffer is not initialized and must be a DataBufferInt compatible with SampleModel. SampleModel must be of type SinglePixelPackedSampleModel.
Parameters:
  sampleModel - The SampleModel that specifies the layout.
Parameters:
  dataBuffer - The DataBufferInt that contains the image data.
Parameters:
  origin - The Point that specifies the origin.



IntegerInterleavedRaster
public IntegerInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, IntegerInterleavedRaster parent)(Code)
Constructs a IntegerInterleavedRaster with the given SampleModel, DataBuffer, and parent. DataBuffer must be a DataBufferInt and SampleModel must be of type SinglePixelPackedSampleModel. When translated into the base Raster's coordinate system, aRegion must be contained by the base Raster. Origin is the coodinate in the new Raster's coordinate system of the origin of the base Raster. (The base Raster is the Raster's ancestor which has no parent.) Note that this constructor should generally be called by other constructors or create methods, it should not be used directly.
Parameters:
  sampleModel - The SampleModel that specifies the layout.
Parameters:
  dataBuffer - The DataBufferInt that contains the image data.
Parameters:
  aRegion - The Rectangle that specifies the image area.
Parameters:
  origin - The Point that specifies the origin.
Parameters:
  parent - The parent (if any) of this raster.




Method Detail
createChild
public Raster createChild(int x, int y, int width, int height, int x0, int y0, int bandList)(Code)
Creates a subraster given a region of the raster. The x and y coordinates specify the horizontal and vertical offsets from the upper-left corner of this raster to the upper-left corner of the subraster. A subset of the bands of the parent raster may be specified. If this is null, then all the bands are present in the subRaster. Note that the subraster will reference the same DataBuffer as the parent raster, but using different offsets.
Parameters:
  x - X offset.
Parameters:
  y - Y offset.
Parameters:
  width - Width (in pixels) of the subraster.
Parameters:
  height - Height (in pixels) of the subraster.
Parameters:
  x0 - Translated X origin of the subRaster.
Parameters:
  y0 - Translated Y origin of the subRaster.
Parameters:
  bandList - Array of band indices.
exception:
  RasterFormatException - if the specified bounding box is outside of the parent raster.



createCompatibleWritableRaster
public WritableRaster createCompatibleWritableRaster(int w, int h)(Code)
Creates a raster with the same band layout but using a different width and height, and with new zeroed data arrays.



createCompatibleWritableRaster
public WritableRaster createCompatibleWritableRaster()(Code)
Creates a raster with the same data layout and the same width and height, and with new zeroed data arrays. If the raster is a subraster, this will call createCompatibleRaster(width, height).



createWritableChild
public WritableRaster createWritableChild(int x, int y, int width, int height, int x0, int y0, int bandList)(Code)
Creates a subraster given a region of the raster. The x and y coordinates specify the horizontal and vertical offsets from the upper-left corner of this raster to the upper-left corner of the subraster. A subset of the bands of the parent Raster may be specified. If this is null, then all the bands are present in the subRaster. A translation to the subRaster may also be specified. Note that the subraster will reference the same DataBuffer as the parent raster, but using different offsets.
Parameters:
  x - X offset.
Parameters:
  y - Y offset.
Parameters:
  width - Width (in pixels) of the subraster.
Parameters:
  height - Height (in pixels) of the subraster.
Parameters:
  x0 - Translated X origin of the subraster.
Parameters:
  y0 - Translated Y origin of the subraster.
Parameters:
  bandList - Array of band indices.
exception:
  RasterFormatException - if the specified bounding box is outside of the parent raster.



getDataElements
public Object getDataElements(int x, int y, Object obj)(Code)
Returns the data elements for all bands at the specified location. An ArrayIndexOutOfBounds exception will be thrown at runtime if the pixel coordinate is out of bounds. A ClassCastException will be thrown if the input object is non null and references anything other than an array of transferType.
Parameters:
  x - The X coordinate of the pixel location.
Parameters:
  y - The Y coordinate of the pixel location.
Parameters:
  outData - An object reference to an array of type defined bygetTransferType() and length getNumDataElements().If null an array of appropriate type and size will beallocated. An object reference to an array of type defined bygetTransferType() with the request pixel data.



getDataElements
public Object getDataElements(int x, int y, int w, int h, Object obj)(Code)
Returns an array of data elements from the specified rectangular region. An ArrayIndexOutOfBounds exception will be thrown at runtime if the pixel coordinates are out of bounds. A ClassCastException will be thrown if the input object is non null and references anything other than an array of transferType.
 int[] bandData = (int[])raster.getDataElements(x, y, w, h, null);
 int numDataElements = raster.getNumDataElements();
 int[] pixel = new int[numDataElements];
 // To find a data element at location (x2, y2)
 System.arraycopy(bandData, ((y2-y)*w + (x2-x))*numDataElements,
 pixel, 0, numDataElements);
 

Parameters:
  x - The X coordinate of the upper left pixel location.
Parameters:
  y - The Y coordinate of the upper left pixel location.
Parameters:
  width - Width of the pixel rectangle.
Parameters:
  height - Height of the pixel rectangle.
Parameters:
  outData - An object reference to an array of type defined bygetTransferType() and length w*h*getNumDataElements().If null an array of appropriate type and size will beallocated. An object reference to an array of type defined bygetTransferType() with the request pixel data.



getDataOffset
public int getDataOffset(int band)(Code)
Returns data offset for the specified band. The data offset is the index into the data array in which the first sample of the first scanline is stored.



getDataOffsets
public int[] getDataOffsets()(Code)
Returns a copy of the data offsets array. For each band the data offset is the index into the band's data array, of the first sample of the band.



getDataStorage
public int[] getDataStorage()(Code)
Returns a reference to the data array.



getPixelStride
public int getPixelStride()(Code)
Returns pixel stride -- the number of data array elements between two samples for the same band on the same scanline.



getScanlineStride
public int getScanlineStride()(Code)
Returns the scanline stride -- the number of data array elements between a given sample and the sample in the same column of the next row.



setDataElements
public void setDataElements(int x, int y, Object obj)(Code)
Stores the data elements for all bands at the specified location. An ArrayIndexOutOfBounds exception will be thrown at runtime if the pixel coordinate is out of bounds. A ClassCastException will be thrown if the input object is non null and references anything other than an array of transferType.
Parameters:
  x - The X coordinate of the pixel location.
Parameters:
  y - The Y coordinate of the pixel location.
Parameters:
  inData - An object reference to an array of type defined bygetTransferType() and length getNumDataElements()containing the pixel data to place at x,y.



setDataElements
public void setDataElements(int x, int y, Raster inRaster)(Code)
Stores the Raster data at the specified location. The transferType of the inputRaster must match this raster. An ArrayIndexOutOfBoundsException will be thrown at runtime if the pixel coordinates are out of bounds.
Parameters:
  x - The X coordinate of the pixel location.
Parameters:
  y - The Y coordinate of the pixel location.
Parameters:
  inRaster - Raster of data to place at x,y location.



setDataElements
public void setDataElements(int x, int y, int w, int h, Object obj)(Code)
Stores an array of data elements into the specified rectangular region. An ArrayIndexOutOfBounds exception will be thrown at runtime if the pixel coordinates are out of bounds. A ClassCastException will be thrown if the input object is non null and references anything other than an array of transferType. The data elements in the data array are assumed to be packed. That is, a data element for the nth band at location (x2, y2) would be found at:
 inData[((y2-y)*w + (x2-x))*numDataElements + n]
 

Parameters:
  x - The X coordinate of the upper left pixel location.
Parameters:
  y - The Y coordinate of the upper left pixel location.
Parameters:
  w - Width of the pixel rectangle.
Parameters:
  h - Height of the pixel rectangle.
Parameters:
  inData - An object reference to an array of type defined bygetTransferType() and length w*h*getNumDataElements()containing the pixel data to place between x,y andx+h, y+h.



toString
public String toString()(Code)



Fields inherited from sun.awt.image.IntegerComponentRaster
final static int TYPE_BYTE_BANDED_SAMPLES(Code)(Java Doc)
final static int TYPE_BYTE_BINARY_SAMPLES(Code)(Java Doc)
final static int TYPE_BYTE_PACKED_SAMPLES(Code)(Java Doc)
final static int TYPE_BYTE_SAMPLES(Code)(Java Doc)
final static int TYPE_CUSTOM(Code)(Java Doc)
final static int TYPE_INT_8BIT_SAMPLES(Code)(Java Doc)
final static int TYPE_INT_BANDED_SAMPLES(Code)(Java Doc)
final static int TYPE_INT_PACKED_SAMPLES(Code)(Java Doc)
final static int TYPE_INT_SAMPLES(Code)(Java Doc)
final static int TYPE_USHORT_BANDED_SAMPLES(Code)(Java Doc)
final static int TYPE_USHORT_PACKED_SAMPLES(Code)(Java Doc)
final static int TYPE_USHORT_SAMPLES(Code)(Java Doc)
protected int bandOffset(Code)(Java Doc)
protected int[] data(Code)(Java Doc)
protected int[] dataOffsets(Code)(Java Doc)
protected int numDataElems(Code)(Java Doc)
protected int pixelStride(Code)(Java Doc)
protected int scanlineStride(Code)(Java Doc)
int type(Code)(Java Doc)

Methods inherited from sun.awt.image.IntegerComponentRaster
public Raster createChild(int x, int y, int width, int height, int x0, int y0, int bandList)(Code)(Java Doc)
public WritableRaster createCompatibleWritableRaster(int w, int h)(Code)(Java Doc)
public WritableRaster createCompatibleWritableRaster()(Code)(Java Doc)
public WritableRaster createWritableChild(int x, int y, int width, int height, int x0, int y0, int bandList)(Code)(Java Doc)
public Object getDataElements(int x, int y, Object obj)(Code)(Java Doc)
public Object getDataElements(int x, int y, int w, int h, Object obj)(Code)(Java Doc)
public int getDataOffset(int band)(Code)(Java Doc)
public int[] getDataOffsets()(Code)(Java Doc)
public int[] getDataStorage()(Code)(Java Doc)
public int getPixelStride()(Code)(Java Doc)
public int getScanlineStride()(Code)(Java Doc)
public void setDataElements(int x, int y, Object obj)(Code)(Java Doc)
public void setDataElements(int x, int y, Raster inRaster)(Code)(Java Doc)
public void setDataElements(int x, int y, int w, int h, Object obj)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from sun.awt.image.SunWritableRaster
public static void markDirty(DataBuffer db)(Code)(Java Doc)
public static void markDirty(WritableRaster wr)(Code)(Java Doc)
public static void markDirty(Image img)(Code)(Java Doc)
final public void markDirty()(Code)(Java Doc)
public static void setDataStealer(DataStealer ds)(Code)(Java Doc)
public static byte[] stealData(DataBufferByte dbb, int bank)(Code)(Java Doc)
public static short[] stealData(DataBufferUShort dbus, int bank)(Code)(Java Doc)
public static int[] stealData(DataBufferInt dbi, int bank)(Code)(Java Doc)
public static StateTrackableDelegate stealTrackable(DataBuffer db)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.