SkMatrix matrix; matrix.postScale(2.0f, 2.0f);
SkMatrix matrix; matrix.postScale(1.5f, 2.0f);
SkMatrix matrix; matrix.postScale(2.0f, 2.0f); matrix.postTranslate(100.0f, 50.0f);In this example, the matrix is first scaled by a factor of 2 along both the X and Y axes. Then, it is translated by 100 pixels to the right and 50 pixels down. These examples demonstrate the versatility of the SkMatrix class, and how `postScale` can be used to transform objects in various ways. SkMatrix is part of the Skia library, which is a cross-platform 2D graphics library used in a variety of applications, including Google Chrome, Mozilla Firefox, and Android.