[Node] 바이너리 데이터로 이미지를 가져올 때 포함된
3660 단어 Node.js
바이너리 데이터로 그림을 만들 때 삽입된 request
를 사용하여 이미지를 얻고 제목에서 이미지 형식의 정보를 얻을 때 빠져들기 때문에 공유합니다.
JavaScriptconst request = require('request');
request.get(IMAGE_URL, function(error, response, body) {
var buffer = new Buffer.from(body);
console.log(buffer);
});
이렇게 하면 얻을 수 있을 줄 알았는데, 결과는 다음과 같다.
위쪽은 정확한 이미지 데이터이고, 아래는 코드의 실행 결과입니다.
내용이 다르다...(jpg이기 때문에 FF D8
부터 시작해야 한다)
해결책
request - npm에 쓰여 있습니다.
encoding - encoding to be used on setEncoding of response data. If null, the body is returned as a Buffer. Anything else (including the default value of undefined) will be passed as the encoding parameter to toString() (meaning this is effectively utf8 by default). (Note: if you expect binary data, you should set encoding: null.)
즉, 바이너리 데이터가 기대되는 경우encoding
를 null
로 설정해야 합니다.
그걸 감안하면...
JavaScriptconst request = require('request');
request.get(IMAGE_URL, {encoding: null},function(error, response, body) {
var buffer = new Buffer.from(body);
console.log(buffer);
});
상하가 같은 결과를 실행했기 때문에 성공했다.
Reference
이 문제에 관하여([Node] 바이너리 데이터로 이미지를 가져올 때 포함된), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/tk1024/items/0590564fa7c299f3d2b7
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
const request = require('request');
request.get(IMAGE_URL, function(error, response, body) {
var buffer = new Buffer.from(body);
console.log(buffer);
});
request - npm에 쓰여 있습니다.
encoding - encoding to be used on setEncoding of response data. If null, the body is returned as a Buffer. Anything else (including the default value of undefined) will be passed as the encoding parameter to toString() (meaning this is effectively utf8 by default). (Note: if you expect binary data, you should set encoding: null.)
즉, 바이너리 데이터가 기대되는 경우
encoding
를 null
로 설정해야 합니다.그걸 감안하면...
JavaScript
const request = require('request');
request.get(IMAGE_URL, {encoding: null},function(error, response, body) {
var buffer = new Buffer.from(body);
console.log(buffer);
});
상하가 같은 결과를 실행했기 때문에 성공했다.Reference
이 문제에 관하여([Node] 바이너리 데이터로 이미지를 가져올 때 포함된), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tk1024/items/0590564fa7c299f3d2b7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)