| // Copyright 2017 The PDFium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include "public/cpp/fpdf_deleters.h" |
| #include "public/fpdf_edit.h" |
| #include "public/fpdfview.h" |
| extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| std::unique_ptr<void, FPDFDocumentDeleter> doc(FPDF_CreateNewDocument()); |
| std::unique_ptr<void, FPDFPageDeleter> page( |
| FPDFPage_New(doc.get(), 0, 612, 792)); |
| std::unique_ptr<void, FPDFFontDeleter> font( |
| FPDFText_LoadFont(doc.get(), data, size, font_type, cid)); |
| FPDF_PAGEOBJECT text_object = |
| FPDFPageObj_CreateTextObj(doc.get(), font.get(), 12.0f); |
| FPDFPage_InsertObject(page.get(), text_object); |
| FPDFPage_GenerateContent(page.get()); |