Logo Making

import matplotlib.pyplot as plt fig, ax = plt.subplots() circle = plt.Circle((0, 0), radius=0.5, color=’red’) ax.add_artist(circle) ax.set_aspect(‘equal’) plt.axis(‘off’) plt.show() Word to PDF Converter

Word to PDF Converter

save($pdf_file, ‘PDF’); // Download the PDF file header(‘Content-Type: application/pdf’); header(‘Content-Disposition: attachment; filename=”converted.pdf”‘); readfile($pdf_file); // Clean up unlink($pdf_file); }