mer C
My feedback
95 results found
-
41 votes
-
34 votesCompleted (Comments Open) ·
AdminIllustrator Engineering (Software Engineer, Adobe Illustrator) responded
I am happy to share that we have fixed this bug in our latest release – 26.4.1 which is available worldwide now.
You can update to the latest release using Creative Cloud desktop App: https://helpx.adobe.com/in/creative-cloud/help/creative-cloud-updates.html
Thank you for all the feedback. Keep it coming!
Regards,
Rohit Jain
Illustrator Team
-
126 votes
-
36 votes
-
4 votes
mer C shared this idea ·
-
42 votes
It turns out the problem is fixed only partially in 26.3.1, only for some users, and the performance remains slow when grid is rendered with lines or dots in Outline mode. This applies to zooming, panning and ghosting of objects being moved.
Please help the team by providing your specs and answers to these questions:
1. Does it work fine with grid as dots in Preivew / Outline mode?
2. Does it differ from grid as lines in these modes?
3. What is slow for you exactly? How severe?
4. Is there a difference if you disable 'Grids In Back' option?
5. What are you lines/subdivisions settings?
And any other related feedback is appreciated. Let's track it down and get this really fixed.
-
30 votes
I am happy to share that we have fixed this bug in our latest release – 26.1.0 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
You can update to the latest release using Creative Cloud desktop App: https://helpx.adobe.com/in/creative-cloud/help/creative-cloud-updates.html
Thank you for all the feedback. Keep it coming!
-
46 votes
-
79 votes
I am happy to share that we have fixed this bug in our latest release – 27.0.0 which is available worldwide now.
Going forward, our goal is to fix as many top User-Voice bugs as possible and as frequently as possible. Given the nature of the fixes, some of the bugs will take a longer time to fix, but we are on it.
You can update to the latest release using Creative Cloud desktop App: https://helpx.adobe.com/in/creative-cloud/help/creative-cloud-updates.html
Thank you for all the feedback. Keep it coming!
Ankit Goyal
Illustrator Team
-
16 votes
-
23 votes
-
22 votesCompleted (Comments Open) ·
AdminIllustrator Engineering (Software Engineer, Adobe Illustrator) responded
We have the fix available in the latest prerelease build 26.0
Please update Illustrator using Adobe Creative Cloud application to the latest prerelease build from prerelease section
Warm Regards,
Aishwarya G Gadodia -
28 votes
-
Incorrect size for a group with an ellipse
-
Dimensions_4.jpg 287 KB -
Dimensions_3.jpg 265 KB -
Dimensions_2.jpg 269 KB -
Dimensions_1.jpg 201 KB -
Screen Shot 2021-08-17 at 3.12.40 PM.png 211 KB -
シェイプテスト.ai 1183 KB -
回転前.png 136 KB -
回転後.png 132 KB -
Screenshot 2021-05-19 080253.jpg 26 KB -
Screenshot 2021-05-19 080234.jpg 27 KB -
Screen Shot 2021-03-30 at 8.23.13 PM.png 1360 KB -
Screenshot 2020-12-09 at 16.24.15.png 50 KB
25 votesSeems to be fixed in the latest release. Please check if it is and comment back if it does not.
-
-
57 votesDone (Available in Beta) · 6 comments · Illustrator (Desktop) Feature Requests » Type, Fonts, Text · Admin →
-
36 votes
-
9 votes
-
Export for Screens: bad antialiasing and jagged edges on images within (especially rotated) when exported to JPG
-
Export for screens - AA setting is NOT honored.jpg 740 KB -
Save for web legacy - AA art opt'd setting IS honored.jpg 646 KB -
Export for screens setting that is being ignored by Illustrator.png 43 KB -
the embedded and rotated hi-res raster images, seen within Adobe Illustrator.jpg 619 KB -
Screen Shot 2023-03-28 at 09.00.15.png 232 KB -
ImageComparison.jpg 2320 KB -
TestLayout_Overall_01.jpg 605 KB -
lowQualityExportScreens02.jpg 593 KB -
Illustrator bug 3.png 1637 KB -
ImageComparison.jpg 2320 KB
68 votesAn error occurred while saving the comment -
-
37 votes
-
17 votes
Problem Description:
In Illustrator 2021(25.2.3), the problem is reproduced when exporting JPEG images using "Export for Screens" via script instead of GUI.
Environment:
• macOS 10.14.6
• Illustrator CC 2018(22.1.0)-2021(25.2.3)
Steps to Reproduce:
Open an appropriate ai file and execute the script in the [Code to execute] section to export JPEG image
Requirements:
• ExportForScreensType should be one of JPEG
• Specify AntiAliasingMethod.ARTOPTIMIZED for exportForScreensOptions.antiAliasing
Actual Result:
The exported image has jaggies.
Expected Result:
The exported image looks smooth, befitting an ARTOPTIMIZED image.
Any Workarounds:
• Export the document manually, without going through any scripts
• Set ExportForScreensType to SE_PNG24
• Specify AntiAliasingMethod.TYPEOPTIMIZED for exportForScreensOptions.antiAliasing
Code to execute:
var exportForScreensOptions = new ExportForScreensOptionsJPEG() ;
exportForScreensOptions.antiAliasing = AntiAliasingMethod.ARTOPTIMIZED ; // <--trigger
var itemToExport = new ExportForScreensItemToExport() ;
itemToExport.artboards = '1' ;
itemToExport.document = false ;
var doc = app.documents[0] ;
doc.exportForScreens(Folder.desktop, ExportForScreensType.SE_JPEG100, exportForScreensOptions, itemToExport) ;