IMAGE 썸네일형 리스트형 [IOS Library] 이미지에서 색상값 추출 LEColorPickerA Cocoa-Touch system for getting a color scheme in function of an image, like iTunes 11 does. It is designed as a general purpose class set, in wich LEColorPicker is the interface for your client code. 이동하기 더보기 [Android Library] Image download library~! 아주 잘만든 이미지 다운로드 라이브러리이다~! Image download가 필요한 서비스를 개발할때? 유용할듯하다~!주소는 여기에~! 간단 사용방법1. Application에서 다음과 같은 함수를 만든다.~~! 그리고 호출~!private void initImageLoader () {final DisplayImageOptions option = new DisplayImageOptions.Builder().showImageOnLoading(R.drawable.ic_launcher).cacheInMemory(true).resetViewBeforeLoading(false).build();final ImageLoaderConfiguration configuration = new ImageLoaderConfigu.. 더보기 [Android] 갤러리에서 Image가져오기~! 1. 버튼을 누르면 아래의 코드가 실행되도록 한다. (REQUEST_CODE_IMAGE는 임의의 값) final Intent intent = new Intent (Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); this.startActivityForResult(intent, REQUEST_CODE_IMAGE); 2. 갤러리에서 선택된 사진의 URI를 이용해 사진을 가져온다. protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, da.. 더보기 이전 1 다음