필터 지우기
필터 지우기

How to save an image using its URL

조회 수: 2 (최근 30일)
Arthur Melo
Arthur Melo 2014년 10월 16일
I did this steps and it didn't worked!
url_img =
name_file_img =
20141015-00:00.jpg
>> urlwrite(url_img, name_file_img); Error using urlreadwrite>getFileOutputStream (line 245) Could not open output file "C:\Users\Albm\Documents\MATLAB\2014\10\15\2014\10\15\2014\10\15\2014\10\15\20141015-00:00.jpg".
Error in urlreadwrite (line 69) [file,outputStream] = getFileOutputStream(inputs.filename);
Error in urlwrite (line 38) [f,status] = urlreadwrite(mfilename,catchErrors,url,filename,varargin{:});

채택된 답변

matt dash
matt dash 2014년 10월 17일
You just can't have a colon in a file name, that's all.
  댓글 수: 2
Star Strider
Star Strider 2014년 10월 17일
Good pick-up!
I completely overlooked that.
Arthur Melo
Arthur Melo 2014년 10월 17일
Thanks everybody and sorry, but matt dash gave me the perfect answer, some times we forget too basics things. I don't know why. Thank you matt, now I have no problem.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 10월 17일
You need to use imwrite() if you want to save an image, not urlwrite().
  댓글 수: 4
Image Analyst
Image Analyst 2022년 2월 11일
To get no additional losses, use PNG format
imwrite(rgbImage, 'satellite image.png');
Can you show an example of how you'd save your image array with urlwrite()? The documentation only shows how to save web pages as HTML format, not how to save image data in PNG format.
Augusto Gabriel da Costa Pereira
Augusto Gabriel da Costa Pereira 2022년 11월 11일
This code is perfect. Thanks @Image Analyst

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Red에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by