mapscript.imageObj¶
- class mapscript.imageObj(*args)¶
An image object is a wrapper for images generated by MapServer.
Attributes
formatoutputFormatObjimmutable anoutputFormatObjrepresenting the output format of the imageheightint immutable image height in pixels
imagepathchar immutable if image is drawn by
mapObj.draw()this is IMAGEPATHimageurlchar immutable if image is drawn by
mapObj.draw()this is IMAGEURLresolutiondouble immutable image resolution in pixels per inch
resolutionfactordouble immutable resolution factor
thisownThe membership flag
widthint immutable image width in pixels
Methods
- __init__(*args)[sumber]¶
Create a new
imageObjinstance. If filename is specified, an imageObj is created from the file and any specified width, height, and format parameters will be overridden by values of the image in filename. Otherwise, if format is specified (as anoutputFormatObj) an imageObj is created using that format. If filename is not specified, then width and height should be specified. The default resolution is currently 72 and defined byMS_DEFAULT_RESOLUTION- this setting is not available in MapScript.
- getBytes() gdBuffer[sumber]¶
Returns the image contents as a binary buffer. The exact form of this buffer will vary by MapScript language (e.g. a string in Python, byte[] array in Java and C#, unhandled in Perl)
- getSize() int[sumber]¶
Returns the size of the binary buffer representing the image buffer
Catatan
The getSize method is inefficient as it does a call to getBytes and then computes the size of the byte array. The byte array is then immediately discarded. In most cases it is more efficient to call getBytes directly.
- pasteImage(imageSrc: imageObj, opacity: double = 1.0, dstx: int = 0, dsty: int = 0) int[sumber]¶
Pastes another imageObj on top of this imageObj. If optional dstx,dsty are provided then they define the position where the image should be copied (dstx,dsty = top-left corner position).
