From add21769e592818c6678de79e20efa0259661e03 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Sun, 21 Feb 2016 15:45:28 -0500 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3a90a27..ddcad5a 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,15 @@ RotateAbout(angle, x, y float64) ShearAbout(sx, sy, x, y float64) TransformPoint(x, y float64) (tx, ty float64) InvertY() +``` + +Note: transforms do not currently affect `DrawImage` or `DrawString`. + +## Stack Functions + +Save and restore the state of the context. These can be nested. + +```go Push() Pop() ```