我要渲染分层图像的预览 从photoshop中可以知道所有x和y坐标的图像和文本
我想将所有图像放置在狭窄的位置。
任何想法或任何可提供帮助的SDK
答案 0 :(得分:0)
您应该首先在图像编辑器软件(如Adobe Photoshop)中编辑图像,然后根据需要放置图像层。然后使用 ImageView 放置该图像。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
</LinearLayout>
如果您创建自己的图像编辑应用程序,则应考虑以下库:
答案 1 :(得分:-1)
要读取Photoshop(PSD)文件,请尝试使用JDeli:
https://www.idrsolutions.com/jdeli/
它有一个PsdDecoder类。不幸的是,它不是免费的。
Gimp和Paint.NET可以打开Photoshop文件,它们是开源的。