Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
flutter_plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林生雨
flutter_plugin
Commits
877d09a4
Commit
877d09a4
authored
Oct 28, 2019
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
cea13b06
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
12 deletions
+5
-12
workspace.xml
.idea/workspace.xml
+1
-4
ImageRespository.kt
...flutter_plugin/ImagePlugin/repository/ImageRespository.kt
+2
-6
ScanImagePlugn.dart
lib/ScanImagePlugn.dart
+2
-2
No files found.
.idea/workspace.xml
View file @
877d09a4
...
@@ -5,9 +5,7 @@
...
@@ -5,9 +5,7 @@
<option
name=
"TOOL_WINDOW_CONFIGURED_FILTER"
value=
"Show only selected application"
/>
<option
name=
"TOOL_WINDOW_CONFIGURED_FILTER"
value=
"Show only selected application"
/>
</component>
</component>
<component
name=
"ChangeListManager"
>
<component
name=
"ChangeListManager"
>
<list
default=
"true"
id=
"5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba"
name=
"Default Changelist"
comment=
""
>
<list
default=
"true"
id=
"5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba"
name=
"Default Changelist"
comment=
""
/>
<change
beforePath=
"$PROJECT_DIR$/android/src/main/java/com/example/gengmei_flutter_plugin/GengmeiFlutterPlugin.kt"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/android/src/main/java/com/example/gengmei_flutter_plugin/GengmeiFlutterPlugin.kt"
afterDir=
"false"
/>
</list>
<ignored
path=
"$PROJECT_DIR$/.dart_tool/"
/>
<ignored
path=
"$PROJECT_DIR$/.dart_tool/"
/>
<ignored
path=
"$PROJECT_DIR$/.idea/"
/>
<ignored
path=
"$PROJECT_DIR$/.idea/"
/>
<ignored
path=
"$PROJECT_DIR$/.pub/"
/>
<ignored
path=
"$PROJECT_DIR$/.pub/"
/>
...
@@ -298,7 +296,6 @@
...
@@ -298,7 +296,6 @@
</component>
</component>
<component
name=
"ToolWindowManager"
>
<component
name=
"ToolWindowManager"
>
<frame
x=
"673"
y=
"-861"
width=
"1440"
height=
"811"
extended-state=
"0"
/>
<frame
x=
"673"
y=
"-861"
width=
"1440"
height=
"811"
extended-state=
"0"
/>
<editor
active=
"true"
/>
<layout>
<layout>
<window_info
content_ui=
"combo"
id=
"Project"
order=
"0"
visible=
"true"
weight=
"0.1509299"
/>
<window_info
content_ui=
"combo"
id=
"Project"
order=
"0"
visible=
"true"
weight=
"0.1509299"
/>
<window_info
id=
"Captures"
order=
"1"
side_tool=
"true"
/>
<window_info
id=
"Captures"
order=
"1"
side_tool=
"true"
/>
...
...
android/src/main/java/com/example/gengmei_flutter_plugin/ImagePlugin/repository/ImageRespository.kt
View file @
877d09a4
...
@@ -277,14 +277,10 @@ class ImageRespository {
...
@@ -277,14 +277,10 @@ class ImageRespository {
realPath
,
MediaStore
.
Images
.
Thumbnails
.
MINI_KIND
,
300
,
300
)
realPath
,
MediaStore
.
Images
.
Thumbnails
.
MINI_KIND
,
300
,
300
)
}
else
{
}
else
{
val
png
=
File
(
"${fileDir}/${getFileName(realPath)!!}.png"
)
val
png
=
File
(
"${fileDir}/${getFileName(realPath)!!}.png"
)
val
jpg
=
File
(
"${fileDir}/${getFileName(realPath)!!}.jpg"
)
//
val jpg = File("${fileDir}/${getFileName(realPath)!!}.jpg")
val
jpeg
=
File
(
"${fileDir}/${getFileName(realPath)!!}.jpeg"
)
//
val jpeg = File("${fileDir}/${getFileName(realPath)!!}.jpeg")
if
(
png
.
exists
())
{
if
(
png
.
exists
())
{
it
[
"path"
]
=
png
.
absolutePath
it
[
"path"
]
=
png
.
absolutePath
}
else
if
(
jpg
.
exists
())
{
it
[
"path"
]
=
jpg
.
absolutePath
}
else
if
(
jpeg
.
exists
())
{
it
[
"path"
]
=
jpeg
.
absolutePath
}
else
{
}
else
{
// val get = Luban.with(context).setTargetDir(
// val get = Luban.with(context).setTargetDir(
// fileDir
// fileDir
...
...
lib/ScanImagePlugn.dart
View file @
877d09a4
...
@@ -14,10 +14,10 @@ class ScanImagePlugn {
...
@@ -14,10 +14,10 @@ class ScanImagePlugn {
for
(
var
item
in
v
)
{
for
(
var
item
in
v
)
{
ScanImageItem
scanImageItem
=
new
ScanImageItem
();
ScanImageItem
scanImageItem
=
new
ScanImageItem
();
scanImageItem
.
path
=
item
[
"path"
]
??
""
;
scanImageItem
.
path
=
item
[
"path"
]
??
""
;
scanImageItem
.
size
=
item
[
"size"
]
??
""
;
scanImageItem
.
size
=
item
[
"size"
]
??
0
;
scanImageItem
.
realPath
=
item
[
"realPath"
]
??
""
;
scanImageItem
.
realPath
=
item
[
"realPath"
]
??
""
;
scanImageItem
.
isVideo
=
item
[
"isVideo"
]
==
"T"
?
true
:
false
;
scanImageItem
.
isVideo
=
item
[
"isVideo"
]
==
"T"
?
true
:
false
;
scanImageItem
.
during
=
item
[
"during"
]
??
""
;
scanImageItem
.
during
=
item
[
"during"
]
??
"
0
"
;
tempList
.
add
(
scanImageItem
);
tempList
.
add
(
scanImageItem
);
}
}
newMap
.
putIfAbsent
(
k
,
()
=>
tempList
);
newMap
.
putIfAbsent
(
k
,
()
=>
tempList
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment