TATalha Amininsmartformatter.hashnode.dev·Jul 15 · 4 min readPNG to Text OCR: Extract Data with Tesseract & Python MetaExtracting Text from PNGs: The Developer's Guide to OCR Optical Character Recognition (OCR) translates raster image pixels into machine-readable strings. When working with PNGs—especially screenshots 00
TATalha Amininsmartformatter.hashnode.dev·Jul 9 · 3 min readHow to Compress PPTX Files Without Destroying ThemA .pptx file is a ZIP archive. Inside it lives an ECMA-376 / ISO 29500 Open XML bundle: XML slide definitions, relationship files (_rels/), and raw media assets. The media is the problem. Every embedd00
TATalha Amininsmartformatter.hashnode.dev·Jul 8 · 3 min readJSON Escape & Unescape Explained — And Why Your API Is Probably Doing It WrongIf you've ever received an API response where a field's value starts with {\" instead of {, or your JSON.parse() returns a string instead of an object — you've hit a JSON escaping bug. Here's everythi00