Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
2

Using large size artboard will scale the item?

Explorer ,
Aug 31, 2023 Aug 31, 2023

I created a large size artboard and inserted a rectange, I found the size of rectange will be scaled by 10 times.

 

var app = new Illustrator.Application();
var doc = app.Documents.Add(
    Illustrator.AiDocumentColorSpace.aiDocumentCMYKColor,
    27040,
    14810);
var item = doc.PathItems.Rectangle(762.5, 87.5, 300, 100); // width 300pt

James23069990fqkl_0-1693538273956.pngexpand image

 

 

the width of the rect is 3000pt but it should be 300pt.

TOPICS
Bug , Scripting , SDK
273
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Aug 31, 2023 Aug 31, 2023

Hi @LoveYou阿逗逼6666, yes this is how Large Size Documents works from the scripting API point of view. In Large Size Documents you must take the Document.scaleFactor into account to calculate final sizes. - Mark

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Aug 31, 2023 Aug 31, 2023

you are right! can i disable the scale feature?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 31, 2023 Aug 31, 2023

I think you must make a new document that isn't as large. There is a threshold where if you make the document size too large it becomes a "Large Document".

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 31, 2023 Aug 31, 2023
LATEST

Here is info about Large Canvas. - Mark

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines