Created
September 15, 2022 11:05
-
-
Save asilbalaban/ea4c066daeaf9c5b8547414fd494e7d1 to your computer and use it in GitHub Desktop.
Custom export script for Adobe Illustrator
This file contains 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
// 3D sunum için export scripti | |
var document = app.activeDocument; | |
var exportOptions = new ExportOptionsJPEG(); | |
exportOptions.artBoardClipping = true; | |
exportOptions.antiAliasing = true; | |
exportOptions.qualitySetting = 100; | |
scaleTo = 24.91 | |
if (scaleTo) { | |
exportOptions.verticalScale = scaleTo; | |
exportOptions.horizontalScale = scaleTo; | |
} | |
document.exportFile(File("~/asilme/jordanred_3d_export/export_folder/test.jpg"), ExportType.JPEG, exportOptions); | |
alert("Başarılı bir şekilde kaydedildi."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment