c#如何识别两个不同尺寸矩形的坐标?

时间:2018-05-18 06:29:54

标签: c# pdf itext imagemagick.net

我的图像宽度为“ImageWidth”,高度为“ImageHeight”,PDF为宽度“PdfWidth”,高度为“PdfHeight”。它们都具有相同的内容(extact replica)但具有不同的尺寸。

现在我正在标记位置让我们说(X,Y)在图像上。如何在PDF中获得相同的位置?

这是我的代码,但它并不完美

var x = Convert.ToInt32(PdfWidth * (XAxies / ImageWidth));
var y = Convert.ToInt32(PdfHeight - (PdfHeight * (YAxies /ImageHeight)));

0 个答案:

没有答案