티스토리 뷰
UnityWebRequest wwwTexture = UnityWebRequest.GetTexture(textureURL);
yield return wwwTexture.Send();
(...)
Texture2D imgToShare = DownloadHandlerTexture.GetContent(wwwTexture);
(...)
And then to save it :
Texture2D newImg = newTexture2D(imgToShare.width,imgToShare.height,TextureFormat.RGBA32,false);
newImg.SetPixels(imgToShare.GetPixels());
File.WriteAllBytes(somePath, newImg.EncodeToJPG());
1/ Download the texture
UnityWebRequest wwwTexture = UnityWebRequest.GetTexture(textureURL);
yield return wwwTexture.Send();
if(! wwwTexture.isError)
{
Texture2D texture = DownloadHandlerTexture.GetContent(wwwTexture);
(...)
}
2/ Create a new texture and then load the downloaded bytes inside the new texture (which will be readable)
Texture2D nexTexture = new Texture2D(texture.width, texture.height);
newTexture.LoadImage(wwwTexture.downloadHandler.data)
3/ Then you can use GetPixels() or EncodeToJPG() (or PNG) from the newTexture because it is readable.
File.WriteAllBytes(somePath, newTexture.EncodeToJPG());
Color[] colors = newTexture.GetPixels()
- Total
- Today
- Yesterday
- 더피처피티
- 인류 최초
- 목동
- 목동역
- 남자친구
- 연금복권
- brazil nut
- 로또 인터넷
- 목동사거리
- 맛집
- 순대국
- coran
- 동행복권
- 파워UP포인트
- 도메인등록
- 새우튀김
- 포코폰
- 법인 서식
- 횟집
- 도메인
- 로또
- Sandoll미생체
- 무료도메인
- 나사
- 모듬회
- 제주도 맛집
- 윤태호폰트
- 주식회사
- 공짜도메인
- 남부시장
- 산돌미생체
- 알릴레오
- Lotto
- 샤오미
- 치킨
- 윤태호작가폰트
- 위장약#라니티딘
- koran
- 여자친구
- 제주 맛집
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |