일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- digitalRead
- SERIAL
- Unity
- flutter
- inheritance
- UNO
- atmega328
- sensor
- mfc
- memory
- Contour
- preprocessing
- Barcode
- Class
- length
- aduino
- Read
- Overloading
- Pointer
- compare
- parameter
- APP
- Android
- java
- stream
- file access
- wpf
- c++
- Encapusulation
- public
- Today
- Total
목록picture (2)
폴크(FOLC)

# xls 파일에 Local Storage 에 있는 Image 를 Load 해서 추가 하려면 Picture 형태의 정보를 이용한다. > 추가하는 이미지의 크기를 변경할 수 있다. ( LockAspectRatio ) # 관련 소스 코드 > using Excel = Microsoft.Office.Interop.Excel; > Excel.Range PositionXY = (Excel.Range)workSheet.Cells[Row, Col]; > Excel.Pictures excelPictures = workSheet.Pictures(Type.Missing) as Excel.Pictures; > Excel.Picture pictureInfo = excelPictures.Insert(strFilePath, Sys..

# first work > Weather, Air Condition, Camera 1. Weather # 무료 사이트 이용 - http://api.openweathermap.org import 'package:http/http.dart' as http; String url_weather = 'http://api.openweathermap.org/data/2.5/weather?lat=$dPosX&lon=$dPosY&appid=$apiKey&units=metric'; http.Response response = await http.get(url_weather); if (response.statusCode == res_ok) return jsonDecode(response.body); 2. Air Condit..