I feel like I'm going crazy. I am replacing some i...
# advancedpdf
j
I feel like I'm going crazy. I am replacing some images in a PDF. The new images are the exact same dimensions. However, when I replace the image URL, it displays as a completely different size than the old image that was there before. Previously, the image would fill an entire page and now I'm only seeing one tiny corner of the image. I am not adjusting anything else but the src value (see code below). Any insights?
Copy code
<@filecabinet nstype="image"
                src="<https://XXXXXXX.app.netsuite.com/core/media/media.nl?id=4717338&c=XXXXXXX&h=532hq9r-DudI4ZAQ35Ty-hkh6LLc5zMd_CBo6i0MotL-jpSd>"
                style="width: 100%; height: 100%; border-width: 0px;" />
I eventually found the issue. The images were a different DPI so NS was having trouble interpreting it into percentages of size. I change that to inches and it worked.