Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- C#
- 자바
- MS-SQL
- MANTIS
- Bootstrap
- 이클립스
- MSsql
- Maven
- asp.net
- Java
- Eclipse
- Android
- Redirect
- 안드로이드
- 웹뷰
- WebView
- 자바스크립트
- scrollView
- javascript
- jsp
- 웹 서비스
- TextBox
- decompiler
- html
- STS
- SpringSource Tool Suite
- varags
- 컬럼명
- Apache Lucene
- Web Service
Archives
- Today
- Total
목록Image to BufferedImage (1)
bboks.net™
Java Image to Buffered Image
public BufferedImage toBufferedImage(Image input) { if (input instanceof BufferedImage) return (BufferedImage) input; if (input instanceof VolatileImage) return ((VolatileImage)input).getSnapshot(); //too lazy to use MediaTracker directly: ImageIcon imageIcon = new ImageIcon(input); if (imageIcon.getImageLoadStatus() != MediaTracker.COMPLETE) throw new IllegalArgumentException("Can't load image"..
Java/Java
2007. 11. 29. 21:29