How can I convert 'file.fig' to to jpg?

263 ビュー (過去 30 日間)
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 5 月 2 日
コメント済み: Walter Roberson 2023 年 1 月 28 日
I have 'file.fig' that consists from 50 figures. I would like to convert them to jpeg. How can I do that?
Thanks
Riyadh
  3 件のコメント
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 5 月 2 日
編集済み: Riyadh Muttaleb 2016 年 5 月 2 日
thank you so much for your reply, I have individual 50 figures, so I would like to save them separately.
Miguel Rodriguez Talaveron
Miguel Rodriguez Talaveron 2019 年 10 月 14 日
Hi the question is: the moment you have a file.fig and you want to convert it

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2016 年 5 月 2 日
figs = openfig('TheFigFile.fig');
for K = 1 : length(figs)
filename = 'figure_%02d.jpg';
saveas(figs(K), filename);
end
  5 件のコメント
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 12 月 20 日
Hello Walter,
I have two files (.fig)..How can I covert them to jpg at came time?
Thanks in advance
Riyadh
Walter Roberson
Walter Roberson 2016 年 12 月 20 日
If they need to appear together in the same image, then save them as png or tif, read the png (or tif) and combine the images in an appropriate way, such as horzcat or vertcat or perhaps imagepatch. Then save that result into an appropriate file format.
Use png or tiff as the intermediate format so that you do not end up losing information twice from the JPEG lossy compression.

サインインしてコメントする。

その他の回答 (4 件)

Sanjeev kumar
Sanjeev kumar 2022 年 8 月 12 日

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 2 日
編集済み: Azzi Abdelmalek 2016 年 5 月 2 日
  1 件のコメント
Riyadh Muttaleb
Riyadh Muttaleb 2016 年 5 月 3 日
thank you, I used it, but the problem how can I do loop for saving? I tried many stuff but didn't work!

サインインしてコメントする。


Bahamut Zero
Bahamut Zero 2017 年 8 月 10 日
編集済み: Bahamut Zero 2017 年 8 月 10 日
You can download a tool for converting a folder of .fig to .jpeg en masse here. Just make sure you have the correct MATLAB Runtime Compiler (license not required).

MATCHA SIVA KUMAR
MATCHA SIVA KUMAR 2023 年 1 月 28 日
figs = openfig('TheFigFile.fig');
for K = 1 : length(figs)
filename = 'figure_%02d.jpg';
saveas(figs(K), filename);
end
  1 件のコメント
Walter Roberson
Walter Roberson 2023 年 1 月 28 日
I posted that more than 6 years ago, and it had a mistake that was corrected later.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeFPGA, ASIC, and SoC Development についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by