컴퓨터사양
Operating System
Name = Microsoft Windows 7 Ultimate
Version = 6.1.7601
Architecture = 32bit
CPUs = 4
Memory = 7.9GB
Node.js
Node.js Version = 0.10.13
npm Version = 1.3.2
Titanium CLI
CLI Version = 3.2.3
node-appc Version = 0.2.1
Titanium SDKs
3.2.3.GA
Install Location = C:\Users\yumin\AppData\Roaming\Titanium\mobilesdk\win32\3.2.3.GA
Platforms = tizen, mobileweb, android, blackberry
git Hash = b958a70
git Timestamp = 04/22/14 10:17
node-appc Version = 0.2.1
3.2.2.GA
Install Location = C:\Users\yumin\AppData\Roaming\Titanium\mobilesdk\win32\3.2.2.GA
Platforms = tizen, mobileweb, android, blackberry
git Hash = 96e9a07
git Timestamp = 03/05/14 12:21
node-appc Version = 0.2.0
Issues
No issues detected! Your development environment should be working perfectly!
안드로이드 이미지 멀티 업로드 방식이 궁금하네요…
API문서에서 업로드시 이미지를 하나씩 전달하는 것만 나오고
자료를 찾기도 만만치 않네요 ^^; (다들 간단하게 하시는건지…)
https://github.com/railskarthi/TiMultiImagePicker96
깃허브에서 위에있는 다중이미지 선택 모듈을 찾아 사용하고 있는데요
API문서에 나오는 event.media와 형식이 틀려 많이 헤매고 있네요
for (var i = 0; i < imgArray.length; i++) {
if (imgArray[i]) {
var imgView = Ti.UI.createImageView({
left : ‘10dp’,
top : ‘10dp’,
image : gallerypicker.decodeBitmapResource(imgArray[i], 640, 960)
});
upimg[i] = imgView.image;
}
}
imgup(upimg); //업로드함수
gallerypicker 소스중 한부분에서 이미지뷰의 이미지를 가져와서 업로드를 하고 있는데
db를 보면 txt형식으로 올라가는 문제로 시간이 오래걸리네요
blob을 png로 형변환할 수 있는 방법이 있을까요?
멀티업로드 모듈이나 해결점을 알고 계신분의 도움이 필요하네요~