Fatal Error: Allowed Memory Size Exhausted In XAMPP

fpdf, memory, out-of-memory, size, xampp

Solution

Change the memory_limit option in your php.ini to your needs.

Problem

Right now I was printing all of my data into a PDF using FPDF and those data contains pictures with a large image sizes. Then my the XAMPP promt like following text below. What is the following solution in order for me to proceed printing? Is their a solution without changing the images size? ``` Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 50933016 bytes) in C:\xampp\htdocs\techgirl\reports\fpdf.php on line 1449 ``` Even I tried to change the memory limit in my `php.ini` into 900M nothing happen.

Original source