HOW TO CHANGE MULTIPLE JPG TO PNG IMAGES
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ajith
am 29 Mai 2013
Kommentiert: yasser
am 19 Apr. 2021
HOW TO CHANGE MULTIPLE JPG TO PNG IMAGES
2 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 29 Mai 2013
Bearbeitet: Azzi Abdelmalek
am 29 Mai 2013
f=dir('Yourfolder\*.jpg');
fil={f.name};
for k=1:numel(fil)
file=fil{k}
new_file=strrep(file,'.jpg','.png')
im=imread(file)
imwrite(im,new_file)
end
13 Kommentare
yasser
am 19 Apr. 2021
When I use your code I found that error
Error using strrep
Char inputs must be row vectors.
Are there any explanation?
regards
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!