Commit c93f6fe0 authored by 林生雨's avatar 林生雨

commit

parent 13da6aa9
......@@ -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" />
......
......@@ -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}");
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment