How to convert a folder with multiple type of images such as PNG, GiF, JEPG,...etc into JPG and store the converted images in a folder in desktop ?

6 vues (au cours des 30 derniers jours)
How to convert a folder with multiple type of images such as PNG, GiF, JPEG,...etc into JPG and store the converted images in a folder in desktop ?

Réponse acceptée

Akira Agata
Akira Agata le 2 Déc 2017
How about the following script?
fileList = {'ngc6543a.jpg','corn.tif'};
for kk = 1:numel(fileList)
I = imread(fileList{kk});
[~,fileName,ext] = fileparts(fileList{kk});
imwrite(I,[fileName,'.png']);
end
  13 commentaires
Intan Antasari
Intan Antasari le 31 Jan 2019
I got an error because I use imwrite to save .mat format.
I realize that imwrite is use to save image format. I already solve that problem.
I use save (filename, 'A')
Thank you for your help.

Connectez-vous pour commenter.

Plus de réponses (2)

Jos (10584)
Jos (10584) le 4 Déc 2017
Why not use a dedicated tool to convert images, like good-old IrfanView (does it still exist?) or gimp?

cui,xingxing
cui,xingxing le 31 Jan 2019
Modifié(e) : cui,xingxing le 31 Jan 2019
you can write like this,but can get all images from website(note: modify your urls):
clc
clear
% s=urlread('https://image.baidu.com/search/index?tn=baiduimage&ipn=r&ct=201326592&cl=2&lm=-1&st=-1&sf=1&fmq=&pv=&ic=0&nc=1&z=&se=1&showtab=0&fb=0&width=&height=&face=0&istype=2&ie=utf-8&fm=result&pos=history&word=%E6%B8%85%E6%9C%9D%E7%A1%AC%E5%B8%81');
s = webread('https://mp.weixin.qq.com/s/WlGxKjirx1iKqwmfMzVI0g');
pat='https://[^,"]*.=(jpg|png|gif|jpeg)';
% pat='http://[^,]*.jpg';
expr= regexp(s, pat, 'match');
%%
fid=fopen('images.txt','w');
fprintf(fid,'%s\n',expr{:});
fclose(fid);
for i=1:length(expr)
img_url =expr{i};
try
% s=websave(a,sprintf('%d.jpg',i), 'UserAgent','MATLAB R2015b','Timeout',100,'Get',{'term','urlread'});
s = websave(['./',sprintf('%d.jpg',i)],img_url);
catch ME
continue
end
end
%% show urls
imgs = string(expr);
for i = 1:length(imgs)
fprintf('%s\n',imgs(i));
end
% reference: https://stackoverflow.com/questions/169625/regex-to-check-if-valid-url-that-ends-in-jpg-png-or-gif

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by