HOW TO CHANGE MULTIPLE JPG TO PNG IMAGES
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ajith
el 29 de Mayo de 2013
Comentada: yasser
el 19 de Abr. de 2021
HOW TO CHANGE MULTIPLE JPG TO PNG IMAGES
2 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 29 de Mayo de 2013
Editada: Azzi Abdelmalek
el 29 de Mayo de 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 comentarios
yasser
el 19 de Abr. de 2021
When I use your code I found that error
Error using strrep
Char inputs must be row vectors.
Are there any explanation?
regards
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!