
|
createImage(num, width, height);
|
|
loadImage(num,Location);
|
|
disposeImage();
|
|
disposeImage(num);
|
|
saveImage(num,Location);
|
|
showImage(num);
|
|
showPipImage();
|

|
getImageWidth(num);
|
|
getImageHeight(num);
|
|
clearImage(num);
|
|
setPixel(num, x, y, c);
|
|
isPixelColor(num, x, y, c);
|
|
setPixel(num, x, y, c);
|
|
getPixelColor(num, x, y);
|
|
codeCouleur(Color);
|
|
isPixelColor(num, x, y, c);
|
|
getAlpha(code);
|
|
getRed(code);
|
|
getGreen(code);
|
|
getBlue(code);
|
|
drawSegment(num, x1, y1, x2, y2, c);
|
|
drawRect(num, x, y, w, h, c);
|
|
drawFillRect(num, x, y, w, h, c);
|
|
drawOval(num, x, y, w, h, c);
|
|
drawFillOval(num, x, y, w, h, c);
|
|
drawString(num, Str, x, y, c);
|
|
ConvolveImage(num,mask);
|
|
resizeImage(num, w, h);
|
|
resizeImageWithHint(num, w, h);
|
|
rotateImage(num, angle);
|
|
copyImage(num1, num2);
|
|
copyImage(num1, num2, x, y, w, h);
|
|
copyImage(num1, num2, borderWidth);
|
|
cutImage(num1, num2, x, y, w, h);
|
|
createImageFromPixMap(num,pixmap, width, height);
|
|
loadImageToPixMap(num,pixmap);
|
|
void main(){
int [][] pixMap= new int[200][200];
for (int x=0; x < 200; x++)
for (int y=0; y < 200; y++)
pixMap[x][y]=x*y;
createImageFromPixMap(1,pixMap,200,200);
showImage(1);
}
|
|
openFileReader(String nomFichier)
|
|
readNextCode()
|
|
closeFileReader()
|
|
openFileWriter(String nomFichier)
|
|
writeNextCode(int code)
|
|
closeFileWriter()
|