As Vern just mentioned, Scott Klement has a version of imagemagick available that will work. If you want to stick to stuff you can get from IBM, then python might fit the bill for you. A q&d example that takes a fully qualifyied file on the ifs and converts it to JPG.
Python:
import sys
import argparse
import os.path
from PIL import Image
arg1 = sys.argv[1]
filename, file_extension = os.path.splitext(arg1)
old_image = Image.open(arg1)
old_image.save(filename + '.jpg')
cl:
STRQSH CMD('python /kevin/python/png_convert.py /kevin/qr.png')
On Tue, 2021-08-17 at 12:58 +0000, Hohlen, Kent wrote:
[You don't often get email from kent.hohlen@xxxxxxxxxxxxxxx<mailto:kent.hohlen@xxxxxxxxxxxxxxx>. Learn why this is important at
http://aka.ms/LearnAboutSenderIdentification.]
We are trying to print product images on a report. Unfortunately the images we are trying to print are in PNG format and AFPDS doesn't support that format.
I was wondering if there are any tools or utilities available that run on the IBM i that would convert that format?
Another thought is we could take the BASE64 string and create our own image. I see SQL has a way to convert BASE64 to an image file, but I can't seem to get it to work. Any working examples or articles that I could view?
We are at 7.2 and updating to 7.4 within a month or so if there is anything in 7.4 that I could use.
Thanks.
[Andersen Windows & Doors, LOVE THE LIFE YOU SEE]
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx<mailto:MIDRANGE-L@xxxxxxxxxxxxxxxxxx>
To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx<mailto:MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx>
Before posting, please take a moment to review the archives
at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx<mailto:support@xxxxxxxxxxxxxxxxxxxx> for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
[
https://www.medtronsoftware.com/img/MedtronMinilogo.bmp] Kevin Bucknum
Senior Programmer Analyst
MEDDATA / MEDTRON
120 Innwood Drive
Covington LA 70433
Local: 985-893-2550
Toll Free: 877-893-2550
https://www.medtronsoftware.com
CONFIDENTIALITY NOTICE
This document and any accompanying this email transmission contain confidential information, belonging to the sender that is legally privileged. This information is intended only for the use of the individual or entity named above. The authorized recipient of this information is prohibited from disclosing this information to any other party and is required to destroy the information after its stated need has been fulfilled. If you are not the intended recipient, or the employee of agent responsible to deliver it to the intended recipient, you are hereby notified that any disclosure, copying, distribution or action taken in reliance on the contents of these documents is STRICTLY PROHIBITED. If you have received this email in error, please notify the sender immediately to arrange for return or destruction of these documents.
As an Amazon Associate we earn from qualifying purchases.