Hi @Anonymous!
Some notes first:
- The Tiff file is compressed using "CCITT Group 4 Fax Encoding" with 2 colors only Black & White, which is ideal for this application.
- The resolution of the original image is 300DPI x 300DPI, & Size in pixels: 14647 x 7869 Pixels (115.26 MPixels)
- That means the actual image size in cm is: 124.0 x 66.6 cm; (48.82 x 26.23 inches)
Now the ideal solution would be to preserve: The original image composition and colors / The original Resolution / The original Image Size, because changing any of these results in using mathematical algorithms that alter the original image.
A- Preserving the original Image Size:
- When Inserting the tiff image using "ImageAttach" command, set the insertion scale to 1:1 (*)
- In plotting, create a new layout using a sheet size that can include the entire image 1:1,
(The original size is 124.0 x 66.6 cm, then you need at least 2A0 sheet) (6)
- In the layout set the Viewport Scale to 1:1, and resize the viewport to show the entire drawing (7)
B- Preserving image format and composition:
- By using "ImageAttach" ( Inserting the image as XRef instead of OLE).
- The "ViewPort" shading needs to be set to "As Displayed" (by selecting the viewport inside the layout and editing its properties)
- Better use the "Monochrome" Plot Style here, and make sure you're plotting with plot styles (2 & 5)
C- Preserving the original resolution:
- We need set these settings is set correctly:
o "RASTERDPI" is set to at least 300 DPI
o insure the "ViewPort" shading is set to "As Displayed" (as mentioned before),
o In the plot dialog box use Printer: "AutoCAD PDF (High Quality Print) printer (1)
o set the "Quality" to "Custom" & "DPI" to at least "300" (3 & 4)



Some Final Notes:
- Cons: Using ImageAttach means the image is an XRef and not actually inside the drawing file, so you need to send it with the file or use ETransmit to save the hole package (DWG & Tiff) to the client..
- Pros: The image will maintain it's original composition including being dual color B&W, which means there will be no artifacts even when resizing (of course resizing will make the plotted image different than the original, but no artifacts though) and with no resizing you will get a final plot identical to original scan..
- To improve AutoCAD chances in plotting high Res. plots, you can set the value of the system variable "RasterPercent" to more than the default 20 to allow Autocad to use more than 20% of your memory in plotting the final image..
Regards!