Downloads:
785
Downloads of v 0.6.2:
357
Last Update:
30 Dec 2020
Package Maintainer(s):
Software Author(s):
- Lucian Sabo
Tags:
riot image optimization jpeg gif png compression embedded- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Radical Image Optimization Tool
This is not the latest version of Radical Image Optimization Tool available.
- 1
- 2
- 3
0.6.2 | Updated: 30 Dec 2020
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
785
Downloads of v 0.6.2:
357
Maintainer(s):
Software Author(s):
- Lucian Sabo
Radical Image Optimization Tool 0.6.2
This is not the latest version of Radical Image Optimization Tool available.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Radical Image Optimization Tool, run the following command from the command line or from PowerShell:
To upgrade Radical Image Optimization Tool, run the following command from the command line or from PowerShell:
To uninstall Radical Image Optimization Tool, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download riot --internalize --version=0.6.2 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade riot -y --source="'INTERNAL REPO URL'" --version="'0.6.2'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade riot -y --source="'INTERNAL REPO URL'" --version="'0.6.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install riot
win_chocolatey:
name: riot
version: '0.6.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'riot' do
action :install
source 'INTERNAL REPO URL'
version '0.6.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller riot
{
Name = "riot"
Version = "0.6.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'riot':
ensure => '0.6.2',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator gep13 on 31 Dec 2020.
Radical Image Optimization Tool (RIOT for short) is a free image optimizer that will let you to visually adjust compression parameters while keeping minimum filesize.
It uses with a side by side (dual view) or single view interface to compare the original with the optimized image in real time and instantly see the resulting file size.
It is lightweight, fast and simple to use, yet powerful for advanced users. You will be able to control compression, number of colors, metadata settings and much more, and select image format (JPG, GIF or PNG) for your output file.
Features
- open many image types including Adobe Photoshop PSD, HDR, RAW and rare/scientific types
- save and optimize JPEG, GIF and PNG with a simple, clean user interface
- automatic optimization selects the most suitable format and parameters
- works in dual view: (original + optimized image) or single view (optimized image).
- in-place compare function (alternativelly display the original image over the optimized image to notice small pixel changes)
- compress files to desired filesize threshold
- fast processing (all is done in memory); see instant results including resulting filesize
- batch support (process multiple files at once)
- transparency handling options
- decide if you want to keep metadata (comments, IPTC, Adobe XMP, EXIF profiles, ICC profiles). Unsupported metadata is removed
- transfer metadata between image formats (destination format must support them)
- common tools: pan and zoom, rotate, flip
- basic image adjustments: brightness, contrast, gamma, invert
- visually reduce number of unique colors for PNG and GIF images in order to reduce filesize (two quantization methods are available: Xiaolin Wu and NeuQuant neural net)
- resize image by using well known resample filters (ex: Lanczos3, Catmull Rom, Bicubic, and others)
- out-of-the-box support for external PNG optimizers (optipng, pngout, etc)
- compression and results are comparable to those of commercial products, even higher.
- Adaptive logarithmic tone mapping algorithm (Drago) used for HDR images
$ErrorActionPreference = 'Stop'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'riot*'
fileType = 'EXE'
silentArgs = '/S'
validExitCodes= @(0)
}
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$env:ChocolateyPackageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
From: inside installer download
LICENSE
A. Radical Image Optimization Tool End User License Agreement
Radical Image Optimization Tool End User License Agreement
IMPORTANT: THIS END USER LICENSE AGREEMENT ("EULA") IS A LEGAL AGREEMENT BETWEEN YOU AND SIL INTERNATIONAL. READ IT CAREFULLY BEFORE COMPLETING THE INSTALLATION PROCESS AND USING THE PRODUCT. IT PROVIDES A LICENSE TO USE THE PRODUCT. BY INSTALLING AND USING THE PRODUCT, YOU ARE CONFIRMING YOUR ACCEPTANCE OF THE PRODUCT AND AGREEING TO BECOME BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO BE BOUND BY THESE TERMS, DO NOT INSTALL THE PRODUCT.
Grantor: Lucian Sabo [hereafter “author”]
Product: RIOT [hereafter “the Product”] is a set of computer programs, information, tutorials, and help files [hereafter “Product Elements”] designed to optimize and save computer images.
Grant:The author hereby grants a nonexclusive license to use this Product on the following terms:
Free License: The license for this version of the Product requires no payment by the user to The author or any other party.
However if you do enjoy it or use it in your company, please consider a small donation to the developer for his time and efforts to make this software possible and support further development.
Technical support: Because this license is granted to the user for no cost, the user is not entitled to free technical support from The author.
License: The user is allowed to use all of the programs, data, and documentation included with this Product.
You may:
-install and use any or all Product Elements included in the Product, as specified in the individual Terms of Use or License for each Product Element;
-copy the Product, provided that such copies contain all the original Product's contents and proprietary notices.
-permit other individuals to use the Product under the terms listed above.
-place the Product in his original package on the Internet or any other public access network;
-use RIOT.DLL in your applications as a plugin and deploy it, provided that such copies contain all the original Product's contents and proprietary notices
You may not:
-extract portions of a Product Element not permitted by the Terms of Use or Licenses for the Product Element;
-sell licenses for the Product;
-include the Product or any Product Element in any other collection or other product without the author's consent;
-distribute the Product or any Product Elements without the author's consent
-remove any proprietary notices on the Product or on any Product Element.
Title: Title, ownership rights, and intellectual property rights in and to the Product and all component works within it shall remain to The author or the original copyright holders. The Product and all Product Elements within it are protected by the copyright laws of the European Union and international copyright treaties.
Warranty: The author provides no warranties for the Product, but if used as directed and in conjunction with the operating systems for which it was designed, the Product should substantially achieve the functionality described in the documentation. The author does not warrant that your use of the Product will be uninterrupted or that its operation will be error free. In no event shall The author or any Contributors be liable to the licensed user for any special, indirect, incidental, or consequential damages, including (but not limited to) loss of revenues or loss of profits.
Copyright © 2008-2009 Lucian Sabo
[email protected]
Rev: 05 May 2009
md5: E13AD234C26EF68DA1C40BA3CC511CFF | sha1: F072F445A4C638E683762691219F8E29A0872B1E | sha256: 33550E8FD30058FE00866BA022B8F9F3B2D4C4B4AB48F9DC50C1853A8B7FAD6A | sha512: 197092EAE5BE74DE3009B14D27A28DF34CA6C3E25B5164BFFC8A86DDA331831E6C26D1A4EEEB7D97F46B9BDC1FBBDB8BAF75791B18FF8F6ED93BAD786873412B
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The installer should download when loading this page:
https://riot-optimizer.com/thank-you-for-downloading-riot/
There is a direct link to a dynamic DropBox URL on that page as well
Version : 0.6.2
CheckSum : 33550e8fd30058fe00866ba022b8f9f3b2d4c4b4ab48f9dc50c1853a8b7fad6a
Log in or click on link to see number of positives.
- Riot-setup.exe (33550e8fd300) - ## / 70
- riot.0.6.2.nupkg (4c888042cc08) - ## / 66
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Radical Image Optimization Tool 1.0.1 | 428 | Tuesday, January 11, 2022 | Approved | |
Radical Image Optimization Tool 0.6.2 | 357 | Wednesday, December 30, 2020 | Approved |
© 2004-2019 Lucian Sabo
This package has no dependencies.
Ground Rules:
- This discussion is only about Radical Image Optimization Tool and the Radical Image Optimization Tool package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Radical Image Optimization Tool, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.