Я использую Pdfbox https://github.com/TomRoush/PdfBox-Android для добавления подписи (изображения) в PDF. Я хочу добавить подпись с помощью перетаскивания. Я реализовал некоторый код с помощью сенсорного прослушивателя.
Если я не ошибаюсь PDFbox принимает координаты x и y в точках, а Android дает координаты в пикселях, пожалуйста, посмотрите и помогите мне, как преобразовать координаты x и y в пиксели добавить его в pdfbox, который принимает точки как x и y.и как установить сигнатуру (изображение) именно там, где пользователь ее бросил? вот мой код , а вот мой XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/ll_alyout"
android:layout_margin="@dimen/padd_10"
android:orientation="horizontal">
<Button
android:id="@+id/showpdfBttn"
style="@style/bttnStyle"
android:text="Add Document"
android:textAllCaps="false" />
<Button
android:id="@+id/getSign"
style="@style/bttnStyle"
android:text="Add Sign"
android:textAllCaps="false" />
</LinearLayout>
// Here is the code
<RelativeLayout
android:layout_width="wrap_content"
android:layout_below="@id/ll_alyout"
android:id="@+id/ll_relative"
android:clipChildren="false"
android:layout_height="wrap_content">
<com.github.barteksc.pdfviewer.PDFView
android:id="@+id/viewpdf"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imageSign"
android:layout_width="150dp"
android:scaleType="fitXY"
android:layout_height="150dp"
android:src="@drawable/user" />
</com.github.barteksc.pdfviewer.PDFView>
</RelativeLayout>
</RelativeLayout>