mirror of
https://github.com/avinal/sixth-semester.git
synced 2026-01-10 23:28:35 +05:30
6 lines
112 B
Mathematica
6 lines
112 B
Mathematica
image = imread("basic.png");
|
|
imshow(image)
|
|
imwrite(image, "copy.jpeg")
|
|
|
|
img2 = imread("copy.jpeg");
|
|
imshow(img2) |