From 8a93810372f2e90627ef5fbc54ca245b242464f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?GeorgeQin=28=E6=80=9D=E5=BF=86=29?= Date: Mon, 3 May 2021 12:31:25 +0800 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d227c2c..df2d0bd 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ dependencies { ## Usage: #### basic usage -- Capture image in system camera +- Capture an image from system camera ```kotlin CoCo.with(this@MainActivity) .take(createSDCardFile()) @@ -43,7 +43,7 @@ image sample: ![image](https://cdn.nlark.com/yuque/0/2020/gif/1502571/1601093298091-b091b479-05d0-435e-a650-ba5e07850d72.gif) -- Pic image in system Gallery: +- Pick an image from system Gallery: ```kotlin CoCo.with(this@MainActivity) @@ -60,7 +60,7 @@ image sample: ![image](https://cdn.nlark.com/yuque/0/2020/gif/1502571/1601093668141-533ce509-9f4e-45fa-99c7-57a9a3d31335.gif) -- dispose the origin image: +- Dispose the origin image: Generally speaking, we may need dispose the origin image such as compress and so on, so CoCo provide the operator of dispose, we can use it to dispose the image ```kotlin //pick then dispose @@ -76,7 +76,7 @@ Generally speaking, we may need dispose the origin image such as compress and so }) ``` -We use the then method to switch the operator, it can combination the another operators +We use the "then" method to switch the operator, it can also combination the another operators ##### dispose operator: