Android pdf转换bitmap保存到本地

Android pdf转换bitmap保存到本地

PDF转换成图片保存到本地 Android有自带的API提供 首先要把PDF文件下载到本地,下载成功使用
下载就最简单的IO下载都行
例如:

                try {
   
                    URL url = new URL(downUrl);
                    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                    final int contentLength = connection.getContentLength();//文件大小
                    InputStream inputStream = connection.getInputStream();
                    File file = new File(saveFilePath);
                    if (!file.exists()) {
   
                        file.mkdir();
                    }
                    String newfile= saveFilePath+saveFileName;
                    File newFile = new File(newfile);
                    FileOutputStream fileOutputStream 
可以使用以下代码将PDF文件转换为图片: ```java import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.pdf.PdfRenderer; import android.os.Bundle; import android.os.ParcelFileDescriptor; import android.support.v7.app.AppCompatActivity; import android.widget.ImageView; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; public class MainActivity extends AppCompatActivity { private ImageView imageView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); imageView = findViewById(R.id.imageView); File pdfFile = new File("path/to/pdf/file.pdf"); try { // create a new PdfRenderer object PdfRenderer renderer = new PdfRenderer(ParcelFileDescriptor.open(pdfFile, ParcelFileDescriptor.MODE_READ_ONLY)); // get the number of pages in the PDF file final int pageCount = renderer.getPageCount(); // get the first page of the PDF file PdfRenderer.Page page = renderer.openPage(0); // create a new bitmap object Bitmap bitmap = Bitmap.createBitmap(page.getWidth(), page.getHeight(), Bitmap.Config.ARGB_8888); // create a new canvas object Canvas canvas = new Canvas(bitmap); // set the background color of the canvas object canvas.drawColor(Color.WHITE); // render the PDF page into the canvas object page.render(bitmap, null, null, PdfRenderer.Page.RENDER_MODE_FOR_DISPLAY); // set the bitmap image to the ImageView imageView.setImageBitmap(bitmap); // close the page object page.close(); // close the renderer object renderer.close(); // save the bitmap image as a JPEG file FileOutputStream out = new FileOutputStream("path/to/output/file.jpg"); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out); out.flush(); out.close(); } catch (IOException e) { e.printStackTrace(); } } } ``` 注意替换代码中的文件路径。此代码将PDF文件的第一页转换为图片,并将其显示在ImageView中,然后将其保存为JPEG文件。你可以更改代码以转换多页PDF文件或更改输出图像的格式。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Android诚

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值