HOW TO CHANGE MULTIPLE JPG TO PNG IMAGES
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
HOW TO CHANGE MULTIPLE JPG TO PNG IMAGES
2 Commenti
Risposta accettata
Azzi Abdelmalek
il 29 Mag 2013
Modificato: Azzi Abdelmalek
il 29 Mag 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 Commenti
yasser
il 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!