Hello everyone, My problem is as following. Let's assume I need to put a picture in a document in order to replay it later to other destination (useful in EG to make a report). I need this image to have cerain width and height, so I add options to ods graphics statement. Here's example code: ods graphics on / width = 900px height = 1000px imagefmt=png imagemap=no imagename="S_EE_pz_t" noborder noscale ANTIALIASMAX=110000; ods document name=global_report(write); proc sgrender ... run; ods document close; ods graphics off; The SAS result is okay, it has selected image size, but when I trying replay the picture, the result is slightly rescaled (always to 640x480). Moreover, since it's a vector graphics, it's being rescaled like a vector, and the result is kind of messy. Is there a way to prevent rescaling or any other way to prevent images of being distorted? Or why the maximum size is 640x480 and is it a way to increase it? Thanks in advance.
... View more