12 lines
354 B
Java
12 lines
354 B
Java
|
package labwork3;
|
||
|
|
||
|
public class Main {
|
||
|
public static void main(String[] args) {
|
||
|
ImageProxy imageProxy = new ImageProxy(1920, 1080);
|
||
|
imageProxy.selectPixel(10, 50);
|
||
|
imageProxy.drawPixel(50, 138);
|
||
|
imageProxy.findColourByCoordinates(15, 47);
|
||
|
imageProxy.drawPixel(2000, 1400);
|
||
|
imageProxy.display();
|
||
|
}
|
||
|
}
|