---
title: "Generate blank PDF in React Native"
canonical_url: "https://www.nutrient.io/guides/react-native/pdf-generation/blank-pdf/"
md_url: "https://www.nutrient.io/guides/react-native/pdf-generation/blank-pdf.md"
last_updated: "2026-06-19T09:21:00.309Z"
description: "Generate blank PDF in React Native guide for Nutrient React Native SDK with detailed instructions and code examples."
---

# Generate blank PDFs in React Native

Nutrient React Native SDK enables you to generate a blank PDF document. You can provide configuration options and a name or a local path for the new PDF document.

To generate a blank PDF, use the [`Processor`](https://www.nutrient.io/api/react-native/Processor.html) class:

```js

// Define your configuration.
const configuration = {
	name:'newBlankPDF.pdf',
    width: 595,
    height: 842,
    override: true // Delete the existing file with the same name.
};

const { fileURL } = await Processor.generateBlankPDF(configuration);

// Do something with the new file by accessing it from a `fileURL` path.

```

In this example, you define the size of the PDF document with the `width` and `height` parameters, and the name of the PDF file with the `name` parameter. The blank document is saved in the local `Documents` folder. You then use the `override` parameter to overwrite the file with the same name if it already exists in the `Documents` folder.

To specify a different path, use the `filePath` parameter. In this case, any value provided for the `name` parameter is ignored.

See the list of [configuration options](https://www.nutrient.io/guides/react-native/pdf-generation/configuration.md) you can use with [`Processor`](https://www.nutrient.io/api/react-native/Processor.html).
---

## Related pages

- [PDF generation configuration in React Native](/guides/react-native/pdf-generation/configuration.md)
- [HTML to PDF in React Native](/guides/react-native/pdf-generation/from-html.md)
- [Image to PDF in React Native](/guides/react-native/pdf-generation/from-images.md)
- [Generate PDFs in React Native](/guides/react-native/pdf-generation.md)
- [Document to PDF in React Native](/guides/react-native/pdf-generation/from-documents.md)
- [Generate PDFs from a template in React Native](/guides/react-native/pdf-generation/from-template.md)

