GANASMRIDDHI | SCRAP
G a n a s a m r i d d h i

Certifications & Documentation

Official licenses, compliance certificates, and trading documents for our aluminium scrap operations. All documents are available for download with watermarks for verification purposes.

Important Security Notice

All downloadable documents contain watermarks to prevent unauthorized use. For official business purposes requiring unwatermarked documents, please contact our compliance department.

SUPPORTING DOCUMENTS

Additional Paperwork

Other relevant documents for business verification and compliance requirements.

Document Title Type File Size Action
Company PAN Card Tax Document 0.5 MB Download
GST Registration Certificate Tax Certificate 0.6 MB Download
Trade License Local Authority 0.7 MB Download
Bank Certificate Financial 0.8 MB Download
Fire Safety Certificate Safety Compliance 0.9 MB Download
Factory Registration Industrial License 1.0 MB Download

Need Official Copies Without Watermarks?

For official business purposes requiring unwatermarked documents, please contact our compliance department with your verification requirements and business needs.

How to Create Watermarked PDFs:

1. Scan your original certificates as PDF files

2. Use the following PHP script to add watermarks:


// watermark-generator.php
<?php
require('fpdf/fpdf.php');

// Function to add watermark
function addWatermark($inputFile, $outputFile, $watermarkText) {
    // Load existing PDF
    $pdf = new FPDF();
    
    // Add watermark to each page
    $pdf->SetFont('Arial', 'B', 48);
    $pdf->SetTextColor(200, 200, 200);
    
    // Set watermark at 45 degree angle
    $pdf->RotatedText(100, 150, $watermarkText, 45);
    
    // Save watermarked PDF
    $pdf->Output($outputFile, 'F');
}
?>