I'd like to extend the feature set of ResizetizerNT by adding the possibility to generate output images in Jpeg format with configurable level of quality.
Why?
In some rare cases design creators and mobile application owners want to display full screen rich color image assets.
Real example:
the feature called "welcome screens" being displayed after the user signed-in into the app.
this feature can be displayed again if the app is updated.
set of welcome screens based on six different full screen images, plus the login view one, seven in total
these seven images consume about thirty megabytes of space in the package for Android platform because all images despite originally being in a JPEG are converted into PNG format anyway.
The syntax of a new attribute is quite simple, Format="FORMAT,QUALITY" where:
FORMAT: "Png" or "Jpeg"
[optional] QUALITY: 0 .. 100, if not supplied the default value for PNG is 100, for Jpeg is 80.
This PR is an early draft because I would like to ask If you agree to include this feature in the ResizetizerNT?
If yes, I will commit additional improvements to my sources to improve this PR.
(There are a lot of non-nessesary edits in files, I will fix all that stuff, and complete like docs samples, maybe tests)
Hello!
I'd like to extend the feature set of ResizetizerNT by adding the possibility to generate output images in Jpeg format with configurable level of quality.
Why? In some rare cases design creators and mobile application owners want to display full screen rich color image assets. Real example:
The syntax of a new attribute is quite simple,
Format="FORMAT,QUALITY"
where:This PR is an early draft because I would like to ask If you agree to include this feature in the ResizetizerNT? If yes, I will commit additional improvements to my sources to improve this PR. (There are a lot of non-nessesary edits in files, I will fix all that stuff, and complete like docs samples, maybe tests)