Re saving images with Transparent background and uncompressed
Ältere Kommentare anzeigen
Hi,
My query is very simple. I am basically renaming images *.JPG files. However, renamed and saved files are showing background and are compressed.
How can I keep background transparent and can I save them as uncompressed.
p=dir('Data\*.jpg'); %input files
filenames = {p.name};
nfiles = length(filenames);
for K = 1 : nfiles
thisfile = filenames{K};
[~, basename, ~] = fileparts(thisfile);
newname = sprintf("%d.jpg", K);
out_path = 'Data'; % Give path here
fullFileName = fullfile(out_path, newname);
data = imread(thisfile);
imwrite(data, fullFileName);
end
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!