SlideShare une entreprise Scribd logo
1  sur  43
Télécharger pour lire hors ligne
LINE Creators Studio ❤ Kotlin
, 8 0 4 5 1 6 4 2 6
LINE Fukuoka 1
8 #
LINE Creators Studio ❤ Kotlin
LINE Creators Studio?
L I
E :
N
/ . /
LINE Creators Studio ❤ Kotlin
LINE Creators Studio
H- A D A A J
H
H E E A E 2 2
A GA , AA 3
2 A A
Android
LINE Creators Studio ❤ Kotlin
History
. 1 0 678 4
. V[U
. ]e 2 e0 e0 e 0 e3
. 9 4
. 5 I
. 1I
.
. 4
. 1
LINE Creators Studio ❤ Kotlin
History
. 1 0 678 4
. V[U
. ]e 2 e0 e0 e 0 e3
. 9 4
. 5 I
. 1I
.
. 4
. 1
LINE Creators Studio ❤ Kotlin
:
: a
.885 6 8 6
2 - 1/ 2 0 6 ./ 7 .821
LINE Creators Studio ❤ Kotlin
History
. 1 0 678 4
. V[U
. ]e 2 e0 e0 e 0 e3
. 9 4
. 5 I
. 1I
.
. 4
. 1
LINE Creators Studio ❤ Kotlin
History
. 1 0 678 4
. V[U
. ]e 2 e0 e0 e 0 e3
. 9 4
. 5 I
. 1I
.
. 4
. 1
LINE Creators Studio ❤ Kotlin
…
LINE Creators Studio ❤ Kotlin
Ver.1.0
LINE Creators Studio ❤ Kotlin
Ver.1.3
LINE Creators Studio ❤ Kotlin
Ver.1.4
LINE Creators Studio ❤ Kotlin
Ver.1.5
LINE Creators Studio ❤ Kotlin
4 2.
1 5
1 3
1 2 3
4
Ver.2.1 (Android only)
LINE Creators Studio ❤ Kotlin
LINE Creators Studio ❤ Kotlin
Roadmap
LINE Creators Studio ❤ Kotlin
/ :
/
.
GrabCut
LINE Creators Studio ❤ Kotlin
GrabCut
3 1 G 3 1
. 2
2 . M
GrabCut
LINE Creators Studio ❤ Kotlin
GrabCut
z e rp a p GM8
p rp mu t M8
s g p:rp M hw M M8
c G M8
GrabCut
.330 2 14 6 1 2 1 . /
LINE Creators Studio ❤ Kotlin
GrabCut
a: : 8 M 8h Mg
c g pe
c g z t c w
c G c
c r s
r u m
GrabCut
/441 666 3 25 2 3 2 / . 0
LINE Creators Studio ❤ Kotlin
GrabCut
g t M m M :
c m w r :
a m c :
c a he :
a z :
spM M :
g M u G z :
GrabCut
0552 777 4 36 8 3.4. 3 0 / 1
LINE Creators Studio ❤ Kotlin
% C 0
12 .
0
G % 0
C
LINE Creators Studio ❤ Kotlin
03 2
7
.( 0 1 M
)
)
LINE Creators Studio ❤ Kotlin
2 2
CG 1
1 .
1
LINE Creators Studio ❤ Kotlin
Why Kotlin?
- DEC
I
J
-
Kotlin
LINE Creators Studio ❤ Kotlin
Why Kotlin?
val color = Color.CYAN
val alpha = (color shr 24) and 0xff
val red = (color shr 16) and 0xff
val green = (color shr 8) and 0xff
val blue = (color ) and 0xff
LINE Creators Studio ❤ Kotlin
Why Kotlin?
inline val @receiver:ColorInt Int.alpha get() = (this shr 24) and 0xff
inline val @receiver:ColorInt Int.red get() = (this shr 16) and 0xff
inline val @receiver:ColorInt Int.green get() = (this shr 8) and 0xff
inline val @receiver:ColorInt Int.blue get() = (this ) and 0xff
LINE Creators Studio ❤ Kotlin
Why Kotlin?
val a = color.alpha
val r = color.red
val g = color.green
val b = color.blue
LINE Creators Studio ❤ Kotlin
Why Kotlin?
inline operator fun @receiver:ColorInt Int.component1() = this.alpha
inline operator fun @receiver:ColorInt Int.component2() = this.red
inline operator fun @receiver:ColorInt Int.component3() = this.green
inline operator fun @receiver:ColorInt Int.component4() = this.blue
LINE Creators Studio ❤ Kotlin
Why Kotlin?
val (alpha, red, green, blue) = color
LINE Creators Studio ❤ Kotlin
Why Kotlin?
https://developer.android.com/kotlin/ktx
/ J / Ii P / X
/ r P / ae c t K
/ IplJ / I a ec k ed ed
I r P / P / o I I
P
/ I / n P J KAT
Android KTX
LINE Creators Studio ❤ Kotlin
Creators Studio Extensions for
OpenCV
val bitmap = Bitmap.createBitmap(width, height,
Bitmap.Config.ARGB_8888)
val mat = Mat()
Utils.bitmapToMat(bitmap, mat)
val newBitmap = Bitmap.createBitmap(mat.width(), mat.height(),
Bitmap.Config.ARGB_8888)
Utils.matToBitmap(mat, newBitmap)
LINE Creators Studio ❤ Kotlin
Creators Studio Extensions for
OpenCVinterface OpenCVUtils {
fun Bitmap.toMat(): Mat {
val mat = Mat()
Utils.bitmapToMat(this, mat)
return mat
}
fun Mat.toBitmap(): Bitmap {
val bitmap = Bitmap.createBitmap(width(), height(),
Bitmap.Config.ARGB_8888)
Utils.matToBitmap(this, bitmap)
return bitmap
}
}
LINE Creators Studio ❤ Kotlin
Creators Studio Extensions for
OpenCV
val bitmap = Bitmap.createBitmap(width, height,
Bitmap.Config.ARGB_8888)
val mat = bitmap.toMat()
val newBitmap = mat.toBitmap()
I ❤ Kotlin.
LINE Creators Studio ❤ Kotlin
Kotlin
) /
(
Kotlin 1.3 Released!
LINE Creators Studio ❤ Kotlin
Cross platform framework…?
Flutter, React Native, Xamarin etc.
LINE Creators Studio ❤ Kotlin
Multiplatform Kotlin
Kotlin(.kt)
Android
iOS
Kotlin/Native
Kotlin/JVM
Java bytecode
Native code
LINE Creators Studio ❤ Kotlin
Multiplatform Kotlin
Kotlin(.kt)
Android
iOS
Android library
(.jar)
iOS library
(.framework)
Kotlin/Native
Import
Java bytecode
Native code
Kotlin(.kt)
Swift(.swift)Kotlin/Native Import
LINE Creators Studio ❤ Kotlin
Multiplatform Kotlin
Data Model
Repositories
Utils
View Interfaces
Android
iOS
View
View
LINE Creators Studio ❤ Kotlin
Multiplatform Kotlin
/
Thank you.

Contenu connexe

Plus de LINE Corporation

Plus de LINE Corporation (20)

LINE 新星計劃介紹與新創團隊分享
LINE 新星計劃介紹與新創團隊分享LINE 新星計劃介紹與新創團隊分享
LINE 新星計劃介紹與新創團隊分享
 
​LINE 技術合作夥伴與應用分享
​LINE 技術合作夥伴與應用分享​LINE 技術合作夥伴與應用分享
​LINE 技術合作夥伴與應用分享
 
LINE 開發者社群經營與技術推廣
LINE 開發者社群經營與技術推廣LINE 開發者社群經營與技術推廣
LINE 開發者社群經營與技術推廣
 
日本開發者大會短講分享
日本開發者大會短講分享日本開發者大會短講分享
日本開發者大會短講分享
 
LINE Chatbot - 活動報名報到設計分享
LINE Chatbot - 活動報名報到設計分享LINE Chatbot - 活動報名報到設計分享
LINE Chatbot - 活動報名報到設計分享
 
在 LINE 私有雲中使用 Managed Kubernetes
在 LINE 私有雲中使用 Managed Kubernetes在 LINE 私有雲中使用 Managed Kubernetes
在 LINE 私有雲中使用 Managed Kubernetes
 
LINE TODAY高效率的敏捷測試開發技巧
LINE TODAY高效率的敏捷測試開發技巧LINE TODAY高效率的敏捷測試開發技巧
LINE TODAY高效率的敏捷測試開發技巧
 
LINE 區塊鏈平台及代幣經濟 - LINK Chain及LINK介紹
LINE 區塊鏈平台及代幣經濟 - LINK Chain及LINK介紹LINE 區塊鏈平台及代幣經濟 - LINK Chain及LINK介紹
LINE 區塊鏈平台及代幣經濟 - LINK Chain及LINK介紹
 
LINE Things - LINE IoT平台新技術分享
LINE Things - LINE IoT平台新技術分享LINE Things - LINE IoT平台新技術分享
LINE Things - LINE IoT平台新技術分享
 
LINE Pay - 一卡通支付新體驗
LINE Pay - 一卡通支付新體驗LINE Pay - 一卡通支付新體驗
LINE Pay - 一卡通支付新體驗
 
LINE Platform API Update - 打造一個更好的Chatbot服務
LINE Platform API Update - 打造一個更好的Chatbot服務LINE Platform API Update - 打造一個更好的Chatbot服務
LINE Platform API Update - 打造一個更好的Chatbot服務
 
Keynote - ​LINE 的技術策略佈局與跨國產品開發
Keynote - ​LINE 的技術策略佈局與跨國產品開發Keynote - ​LINE 的技術策略佈局與跨國產品開發
Keynote - ​LINE 的技術策略佈局與跨國產品開發
 
LINE Ads Platformの開発を支えるKafka
LINE Ads Platformの開発を支えるKafkaLINE Ads Platformの開発を支えるKafka
LINE Ads Platformの開発を支えるKafka
 
I/O intensiveなKafka ConsumerアプリケーションのスループットをLINE Ads Platformではどのように改善したか
I/O intensiveなKafka ConsumerアプリケーションのスループットをLINE Ads Platformではどのように改善したかI/O intensiveなKafka ConsumerアプリケーションのスループットをLINE Ads Platformではどのように改善したか
I/O intensiveなKafka ConsumerアプリケーションのスループットをLINE Ads Platformではどのように改善したか
 
生粋のKotlin LoverによるLINEのKotlinの話
生粋のKotlin LoverによるLINEのKotlinの話生粋のKotlin LoverによるLINEのKotlinの話
生粋のKotlin LoverによるLINEのKotlinの話
 
LINEで広告プラットフォームをJava+Golangで立ち上げた話
LINEで広告プラットフォームをJava+Golangで立ち上げた話LINEで広告プラットフォームをJava+Golangで立ち上げた話
LINEで広告プラットフォームをJava+Golangで立ち上げた話
 
Efficient And Invincible Big Data Platform
Efficient And Invincible Big Data PlatformEfficient And Invincible Big Data Platform
Efficient And Invincible Big Data Platform
 
LINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tipsLINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tips
 
JavaからKotlinへのスムーズな移行を目指して(サーバサイド)
JavaからKotlinへのスムーズな移行を目指して(サーバサイド)JavaからKotlinへのスムーズな移行を目指して(サーバサイド)
JavaからKotlinへのスムーズな移行を目指して(サーバサイド)
 
あなたは本当に信頼されているだろうか?
あなたは本当に信頼されているだろうか?あなたは本当に信頼されているだろうか?
あなたは本当に信頼されているだろうか?
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Dernier (20)

Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 

LINE Creators StudioでのKotlin利用について

  • 1. LINE Creators Studio ❤ Kotlin , 8 0 4 5 1 6 4 2 6 LINE Fukuoka 1 8 #
  • 2.
  • 3. LINE Creators Studio ❤ Kotlin LINE Creators Studio? L I E : N / . /
  • 4. LINE Creators Studio ❤ Kotlin LINE Creators Studio H- A D A A J H H E E A E 2 2 A GA , AA 3 2 A A Android
  • 5. LINE Creators Studio ❤ Kotlin History . 1 0 678 4 . V[U . ]e 2 e0 e0 e 0 e3 . 9 4 . 5 I . 1I . . 4 . 1
  • 6. LINE Creators Studio ❤ Kotlin History . 1 0 678 4 . V[U . ]e 2 e0 e0 e 0 e3 . 9 4 . 5 I . 1I . . 4 . 1
  • 7. LINE Creators Studio ❤ Kotlin : : a .885 6 8 6 2 - 1/ 2 0 6 ./ 7 .821
  • 8. LINE Creators Studio ❤ Kotlin History . 1 0 678 4 . V[U . ]e 2 e0 e0 e 0 e3 . 9 4 . 5 I . 1I . . 4 . 1
  • 9. LINE Creators Studio ❤ Kotlin History . 1 0 678 4 . V[U . ]e 2 e0 e0 e 0 e3 . 9 4 . 5 I . 1I . . 4 . 1
  • 10. LINE Creators Studio ❤ Kotlin …
  • 11. LINE Creators Studio ❤ Kotlin Ver.1.0
  • 12. LINE Creators Studio ❤ Kotlin Ver.1.3
  • 13. LINE Creators Studio ❤ Kotlin Ver.1.4
  • 14. LINE Creators Studio ❤ Kotlin Ver.1.5
  • 15. LINE Creators Studio ❤ Kotlin 4 2. 1 5 1 3 1 2 3 4 Ver.2.1 (Android only)
  • 16. LINE Creators Studio ❤ Kotlin
  • 17. LINE Creators Studio ❤ Kotlin Roadmap
  • 18. LINE Creators Studio ❤ Kotlin / : / . GrabCut
  • 19. LINE Creators Studio ❤ Kotlin GrabCut 3 1 G 3 1 . 2 2 . M GrabCut
  • 20. LINE Creators Studio ❤ Kotlin GrabCut z e rp a p GM8 p rp mu t M8 s g p:rp M hw M M8 c G M8 GrabCut .330 2 14 6 1 2 1 . /
  • 21. LINE Creators Studio ❤ Kotlin GrabCut a: : 8 M 8h Mg c g pe c g z t c w c G c c r s r u m GrabCut /441 666 3 25 2 3 2 / . 0
  • 22. LINE Creators Studio ❤ Kotlin GrabCut g t M m M : c m w r : a m c : c a he : a z : spM M : g M u G z : GrabCut 0552 777 4 36 8 3.4. 3 0 / 1
  • 23. LINE Creators Studio ❤ Kotlin % C 0 12 . 0 G % 0 C
  • 24. LINE Creators Studio ❤ Kotlin 03 2 7 .( 0 1 M ) )
  • 25. LINE Creators Studio ❤ Kotlin 2 2 CG 1 1 . 1
  • 26. LINE Creators Studio ❤ Kotlin Why Kotlin? - DEC I J - Kotlin
  • 27. LINE Creators Studio ❤ Kotlin Why Kotlin? val color = Color.CYAN val alpha = (color shr 24) and 0xff val red = (color shr 16) and 0xff val green = (color shr 8) and 0xff val blue = (color ) and 0xff
  • 28. LINE Creators Studio ❤ Kotlin Why Kotlin? inline val @receiver:ColorInt Int.alpha get() = (this shr 24) and 0xff inline val @receiver:ColorInt Int.red get() = (this shr 16) and 0xff inline val @receiver:ColorInt Int.green get() = (this shr 8) and 0xff inline val @receiver:ColorInt Int.blue get() = (this ) and 0xff
  • 29. LINE Creators Studio ❤ Kotlin Why Kotlin? val a = color.alpha val r = color.red val g = color.green val b = color.blue
  • 30. LINE Creators Studio ❤ Kotlin Why Kotlin? inline operator fun @receiver:ColorInt Int.component1() = this.alpha inline operator fun @receiver:ColorInt Int.component2() = this.red inline operator fun @receiver:ColorInt Int.component3() = this.green inline operator fun @receiver:ColorInt Int.component4() = this.blue
  • 31. LINE Creators Studio ❤ Kotlin Why Kotlin? val (alpha, red, green, blue) = color
  • 32. LINE Creators Studio ❤ Kotlin Why Kotlin? https://developer.android.com/kotlin/ktx / J / Ii P / X / r P / ae c t K / IplJ / I a ec k ed ed I r P / P / o I I P / I / n P J KAT Android KTX
  • 33. LINE Creators Studio ❤ Kotlin Creators Studio Extensions for OpenCV val bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888) val mat = Mat() Utils.bitmapToMat(bitmap, mat) val newBitmap = Bitmap.createBitmap(mat.width(), mat.height(), Bitmap.Config.ARGB_8888) Utils.matToBitmap(mat, newBitmap)
  • 34. LINE Creators Studio ❤ Kotlin Creators Studio Extensions for OpenCVinterface OpenCVUtils { fun Bitmap.toMat(): Mat { val mat = Mat() Utils.bitmapToMat(this, mat) return mat } fun Mat.toBitmap(): Bitmap { val bitmap = Bitmap.createBitmap(width(), height(), Bitmap.Config.ARGB_8888) Utils.matToBitmap(this, bitmap) return bitmap } }
  • 35. LINE Creators Studio ❤ Kotlin Creators Studio Extensions for OpenCV val bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888) val mat = bitmap.toMat() val newBitmap = mat.toBitmap()
  • 37. LINE Creators Studio ❤ Kotlin Kotlin ) / ( Kotlin 1.3 Released!
  • 38. LINE Creators Studio ❤ Kotlin Cross platform framework…? Flutter, React Native, Xamarin etc.
  • 39. LINE Creators Studio ❤ Kotlin Multiplatform Kotlin Kotlin(.kt) Android iOS Kotlin/Native Kotlin/JVM Java bytecode Native code
  • 40. LINE Creators Studio ❤ Kotlin Multiplatform Kotlin Kotlin(.kt) Android iOS Android library (.jar) iOS library (.framework) Kotlin/Native Import Java bytecode Native code Kotlin(.kt) Swift(.swift)Kotlin/Native Import
  • 41. LINE Creators Studio ❤ Kotlin Multiplatform Kotlin Data Model Repositories Utils View Interfaces Android iOS View View
  • 42. LINE Creators Studio ❤ Kotlin Multiplatform Kotlin /