그림 프레임 로드 Picasso
1262 단어 SSO
Picasso.with(this)
.load(URL)
.placeholder(R.drawable.ic_launcher)//
.error(R.drawable.logo_wechat)//
.transform(new CropSquareTransformation())
// .resize(500, 500)//
.into(imageView);
Transformation
class CropSquareTransformation implements Transformation {
@Override public Bitmap transform(Bitmap source) {
int size = Math.min(source.getWidth(), source.getHeight());
int x = (source.getWidth() - size) / 2;
int y = (source.getHeight() - size) / 2;
Bitmap result = Bitmap.createBitmap(source, x, y, size, size);
if (result != source) {
source.recycle();
}
return result;
}
@Override public String key() { return "square()"; }
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Keycloak에서 SAML 로그인 확인을 위한 IdP 구축SAML에서의 SSO 접속을 검증하는 환경이 필요하게 되었기 때문에, IdP 세우기 쉬운 방법을 찾았는데, Keycloak가 좋을 것 같았다. Keycloak는 다기능으로, 향후 여러가지 학습에도 사용할 수 있을 것...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.