In some cases, for very big images, gerber file coordinates are too big for gerber editor workspace, so a message saying "Incoming data out of range" or similar can appear. In order to prevent that you can easily edit the gerber header manually to decrease scale.
If you open exported gerber file with Notepad or any similar software you can see that in the header of the file there's a line very similar to this:
%FSLAX33Y33*%
Which means: Format Statement Leading Zeros Suppression, Absolute Coordinates format=3.3
That basically defines the comma position of the following coordinates, so to decrease scale by a tenth you just have to increase the decimal number of each axis, resulting on this:
%FSLAX34Y34*%
Which results in: Format Statement Leading Zeros Suppression, Absolute Coordinates format=3.4
By the other side, to increase scale by a tenth you just have to decrease that decimal number:
%FSLAX32Y32*%
Which results in: Format Statement Leading Zeros Suppression, Absolute Coordinates format=3.2
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In some cases, for very big images, gerber file coordinates are too big for gerber editor workspace, so a message saying "Incoming data out of range" or similar can appear. In order to prevent that you can easily edit the gerber header manually to decrease scale.
If you open exported gerber file with Notepad or any similar software you can see that in the header of the file there's a line very similar to this:
%FSLAX33Y33*%
Which means: Format Statement Leading Zeros Suppression, Absolute Coordinates format=3.3
That basically defines the comma position of the following coordinates, so to decrease scale by a tenth you just have to increase the decimal number of each axis, resulting on this:
%FSLAX34Y34*%
Which results in: Format Statement Leading Zeros Suppression, Absolute Coordinates format=3.4
By the other side, to increase scale by a tenth you just have to decrease that decimal number:
%FSLAX32Y32*%
Which results in: Format Statement Leading Zeros Suppression, Absolute Coordinates format=3.2
Where is the source code?