Browse Source

Update README.md

disintegration 13 years ago
parent
commit
b78fba8f79
1 changed files with 4 additions and 2 deletions
  1. 4 2
      README.md

+ 4 - 2
README.md

@@ -2,8 +2,10 @@
 
 Simple Go image processing package. 
 
-Implements a number of basic image transformations (resizing, rotation, flipping) 
-as well as simplified image loading and saving.
+Implements a number of basic image manipulation functions as well as simplified image loading, creation and saving. 
+All the image manipulation functions are not in-place, they return a new image with bounds (0, 0) - (Width, Height)
+This package integrates with standard "image" package well: most functions take image.Image interface as an argument 
+and return draw.Image interface.
 
 ### Installation