From e03bb3659f4bd07da08f6dfb4646bba166a9a4b1 Mon Sep 17 00:00:00 2001 From: VoidVolker Date: Wed, 29 Jul 2015 10:21:19 +0300 Subject: [PATCH] readme fix --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 937fe19..1605976 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Type: int Zoom step value. Formula: -`(1) image_size[i+1] = image_size[i] * 100 / step` +`image_size[i+1] = image_size[i] * 100 / step` (1) ``` 200 -> 200% or 2x -> 100% * 100 / 200 = 50% @@ -157,7 +157,11 @@ Type: logic switch ### [ -c, --scaleover ] Create upscaled image for maximum zoom (last zoom be equal or grater, then image). -`zoom[i-1]_size < source_image_size < zoom[i]_size` +```` +zoom[i-1]_size < source_image_size < zoom[i]_size +```` +`zoom[i]_size` - this is upscaled image. + Work only in slice B mode. In other cases ignored. Default: false @@ -167,6 +171,7 @@ Type: logic switch ### [ -r, --horizontal ] Tiles divide image on horizontal side without remains. On this side tiles will not be croped. + Work only in slice B mode. In other cases ignored. ``` @@ -184,6 +189,7 @@ Type: logic switch ### [ -t, --vertical ] Tiles divide image on vertical side without remains. On this side tiles will not be croped. + Work only in slice B mode. In other cases ignored. ```