This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function exportFileToPNG(dest, artBoardIndex) | |
| { | |
| var exportOptions = new ExportOptionsPNG24(); // or ExportOptionsPNG8 | |
| var type = ExportType.PNG24; // or ExportType.PNG8 | |
| var file = new File(dest + ".png"); | |
| exportOptions.artBoardClipping = true; | |
| exportOptions.antiAliasing = true; | |
| exportOptions.transparency = true; | |
| exportOptions.qualitySetting = 72; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'bundler/setup' | |
| require 'roar/representer/json' | |
| require 'roar/representer/feature/hypermedia' | |
| require 'webmachine' | |
| class Product | |
| include Roar::Representer::JSON | |
| include Roar::Representer::Feature::Hypermedia | |
| property :name |