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
c93f6fe0
Commit
c93f6fe0
authored
Oct 28, 2019
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
13da6aa9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
59 deletions
+30
-59
workspace.xml
.idea/workspace.xml
+1
-4
ImageRespository.kt
...flutter_plugin/ImagePlugin/repository/ImageRespository.kt
+29
-55
No files found.
.idea/workspace.xml
View file @
c93f6fe0
...
...
@@ -5,9 +5,7 @@
<option
name=
"TOOL_WINDOW_CONFIGURED_FILTER"
value=
"Show only selected application"
/>
</component>
<component
name=
"ChangeListManager"
>
<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/ImagePlugin/repository/ImageRespository.kt"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/android/src/main/java/com/example/gengmei_flutter_plugin/ImagePlugin/repository/ImageRespository.kt"
afterDir=
"false"
/>
</list>
<list
default=
"true"
id=
"5be6bbb5-7d6e-4540-a24f-d2b3bf78b3ba"
name=
"Default Changelist"
comment=
""
/>
<ignored
path=
"$PROJECT_DIR$/.dart_tool/"
/>
<ignored
path=
"$PROJECT_DIR$/.idea/"
/>
<ignored
path=
"$PROJECT_DIR$/.pub/"
/>
...
...
@@ -279,7 +277,6 @@
</component>
<component
name=
"ToolWindowManager"
>
<frame
x=
"0"
y=
"23"
width=
"1440"
height=
"811"
extended-state=
"6"
/>
<editor
active=
"true"
/>
<layout>
<window_info
content_ui=
"combo"
id=
"Project"
order=
"0"
visible=
"true"
weight=
"0.1509299"
/>
<window_info
id=
"Captures"
order=
"1"
side_tool=
"true"
/>
...
...
android/src/main/java/com/example/gengmei_flutter_plugin/ImagePlugin/repository/ImageRespository.kt
View file @
c93f6fe0
...
...
@@ -114,61 +114,35 @@ class ImageRespository {
globalThreadPool
.
execute
{
if
(
any
==
null
)
{
Log
.
e
(
"lsy"
,
" THREADMAME "
+
Thread
.
currentThread
().
name
)
if
(
it
[
"isVideo"
]
==
"T"
)
{
val
tempFilePngString
=
fileDir
+
"/"
+
getFileName
(
realPath
)
!!
+
".png"
;
val
tempFilePngExists
=
File
(
tempFilePngString
).
exists
()
// val tempFileJpgString = fileDir + "/" + getFileName(realPath)!! + ".jpg";
// val tempFileJpgExists = File(tempFileJpgString).exists()
// val tempFileJpegString = fileDir + "/" + getFileName(realPath)!! + ".jpeg"
// val tempFileJpegExists = File(tempFileJpegString).exists()
if
(
tempFilePngExists
)
{
it
[
"path"
]
=
tempFilePngString
;
synchronized
(
this
)
{
currentSize
++;
Log
.
e
(
"lsy"
,
"HAVE PATH ${noPathSize} ${currentSize} ${needSize}"
)
if
(
currentSize
==
needSize
)
{
Log
.
e
(
"lsy"
,
" 压缩完成 耗时:${System.currentTimeMillis() - start}"
)
//FINISH
listener
.
onSuccess
(
toMapSync
(
context
,
recordImageListMap
))
}
}
return
@execute
}
else
if
(
it
[
"isVideo"
]
==
"T"
)
{
it
[
"path"
]
=
MyUtil
.
saveVideoImg
(
"${fileDir}/${getFileName(realPath)!!}.png"
,
realPath
,
MediaStore
.
Images
.
Thumbnails
.
MICRO_KIND
,
220
,
220
)
}
else
{
val
tempFilePngString
=
fileDir
+
"/"
+
getFileName
(
realPath
)
!!
+
".png"
;
val
tempFilePngExists
=
File
(
tempFilePngString
).
exists
()
val
tempFileJpgString
=
fileDir
+
"/"
+
getFileName
(
realPath
)
!!
+
".jpg"
;
val
tempFileJpgExists
=
File
(
tempFileJpgString
).
exists
()
val
tempFileJpegString
=
fileDir
+
"/"
+
getFileName
(
realPath
)
!!
+
".jpeg"
val
tempFileJpegExists
=
File
(
tempFileJpegString
).
exists
()
if
(
tempFilePngExists
)
{
it
[
"path"
]
=
tempFilePngString
;
synchronized
(
this
)
{
currentSize
++;
Log
.
e
(
"lsy"
,
"HAVE PATH ${noPathSize} ${currentSize} ${needSize}"
)
if
(
currentSize
==
needSize
)
{
Log
.
e
(
"lsy"
,
" 压缩完成 耗时:${System.currentTimeMillis() - start}"
)
//FINISH
listener
.
onSuccess
(
toMapSync
(
context
,
recordImageListMap
))
}
}
return
@execute
}
else
if
(
tempFileJpgExists
)
{
it
[
"path"
]
=
tempFileJpgString
;
synchronized
(
this
)
{
currentSize
++;
Log
.
e
(
"lsy"
,
"HAVE PATH ${noPathSize} ${currentSize} ${needSize}"
)
if
(
currentSize
==
needSize
)
{
Log
.
e
(
"lsy"
,
" 压缩完成 耗时:${System.currentTimeMillis() - start}"
)
//FINISH
listener
.
onSuccess
(
toMapSync
(
context
,
recordImageListMap
))
}
}
return
@execute
}
else
if
(
tempFileJpegExists
)
{
it
[
"path"
]
=
tempFileJpegString
;
synchronized
(
this
)
{
currentSize
++;
Log
.
e
(
"lsy"
,
"HAVE PATH ${noPathSize} ${currentSize} ${needSize}"
)
if
(
currentSize
==
needSize
)
{
Log
.
e
(
"lsy"
,
" 压缩完成 耗时:${System.currentTimeMillis() - start}"
)
//FINISH
listener
.
onSuccess
(
toMapSync
(
context
,
recordImageListMap
))
}
}
return
@execute
}
else
{
val
time
=
System
.
currentTimeMillis
();
val
time
=
System
.
currentTimeMillis
();
// val get = Luban.with(context).setTargetDir(fileDir)
// .setName(getFileName(realPath)!!)
// .get(realPath);
// it["path"] = get.absolutePath;
it
[
"path"
]
=
MyUtil
.
scareImg
(
realPath
,
200f
,
tempFilePngString
,
75
)
Log
.
e
(
"lsy"
,
"TIMM${System.currentTimeMillis() - time}"
)
}
it
[
"path"
]
=
MyUtil
.
scareImg
(
realPath
,
200f
,
tempFilePngString
,
75
)
Log
.
e
(
"lsy"
,
"TIMM${System.currentTimeMillis() - time}"
)
}
//getImageCacheDir(context, Luban.DEFAULT_DISK_CACHE_DIR)!!.absolutePath
synchronized
(
this
)
{
...
...
@@ -305,13 +279,13 @@ class ImageRespository {
}
else
if
(
jpeg
.
exists
())
{
it
[
"path"
]
=
jpeg
.
absolutePath
}
else
{
val
get
=
Luban
.
with
(
context
).
setTargetDir
(
fileDir
)
.
setName
(
getFileName
(
realPath
)
!!
)
.
get
(
realPath
);
it
[
"path"
]
=
get
.
absolutePath
Log
.
e
(
"lsy"
,
"封面照片 ${get.absolutePath}"
);
//
val get = Luban.with(context).setTargetDir(
//
fileDir
//
)
//
.setName(getFileName(realPath)!!)
//
.get(realPath);
it
[
"path"
]
=
MyUtil
.
scareImg
(
realPath
,
200f
,
fileDir
+
"/"
+
getFileName
(
realPath
)
!!
+
".png"
,
75
)
//
Log.e("lsy", "封面照片 ${get.absolutePath}");
}
}
}
...
...
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