Grav – Media Contrast
Description The value from -100 to +100 is used to apply the contrast filter to the image. When negative number is set higher, then the contrast increases, and when a positive number is set the contrast…
Description The value from -100 to +100 is used to apply the contrast filter to the image. When negative number is set higher, then the contrast increases, and when a positive number is set the contrast…
Description With a value of -255 to +255, a brightness filter is added to the image. More positive numbers make the image brighter while more negative numbers make the image darker. Example ![My…
Description Negative filter is applied to the image and colors get inverted. Example ![My New Image](/images/maxresdefault.jpg?cropZoom = 300, 200&negate) Output The above code will generate the following output − Previous…
Description Sets the value for the image quality between 0 and 100. 0. The number is set for lower quality where 100 is set for higher quality. Example ![My New Image](/images/maxresdefault.jpg?cropZoom = 300, 200&quality = 95)…
Description cropZoom is used to zoom and crop the images as per the request. The aspect ratio will be the same but the image will be cropped and the resulting image will be set in center.…
In this guide, we will discuss Boolean in Dart Programming Language. Dart provides an inbuilt support for the Boolean data type. The Boolean data type in DART supports only two…
Description Crops the images as described by width and height from the x and y location that is used to create a new image. Example ![My new image](example-1.jpg?crop = 100, 100, 300, 200) Output The above code with…
In this guide, we will discuss the String codeUnitAt Method in Dart Programming Language. Returns the 16-bit UTF-16 code unit at the given index. Syntax String.codeUnitAt(int index) Parameter Index − represents…
Description Using CropResize, you can resize the image to a smaller or larger size according to its width and height. Regular resize is cropped in the background area. Example ![My new image](example-1.jpg?cropResize =…
In this guide, we will discuss the toString Method in Dart Programming Language. Returns a string representation of an object. Syntax val.toString() Return Type Returns a string. Example void main()…