浏览代码

Add a very quick guide.

Jorge Rodriguez 11 年之前
父节点
当前提交
3c261481a6
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      stb_image_resize.h

+ 5 - 1
stb_image_resize.h

@@ -12,7 +12,11 @@
                 #define STB_IMAGE_RESIZE_IMPLEMENTATION
             before the #include. That will create the implementation in that file.
 
-        API
+        VERY QUICK GUIDE
+            A typical resize of a in_w by in_h image to out_w by out_h with 4 channels where channel #3 is the alpha channel might look like:
+                int success = stbir_resize_uint8_srgb_edgemode(input_pixels, in_w, in_h, 0, output_pixels, out_w, out_h, 0, 4, 3, 0, STBIR_EDGE_CLAMP);
+
+        FULL API
             See the "header file" section of the source for API documentation.
 
         MEMORY ALLOCATION