Saltar al contenido principal

Convertir formato de imagen API

Qué hace este punto final: El PDF4me Convertir formato de imagen REST API convierte imágenes entre JPG, PNG, WebP, BMP, GIF y TIFF formatos en uno solo POST llamada. Envíe su imagen de origen como una Base64-cadena codificada, especifique el formato actual y el formato de destino, y reciba de vuelta la imagen convertida, también como Base64Úselo para estandarizar formatos de imagen en una cadena de procesamiento, convertir BMP o imágenes heredadas. TIFF archivos para entrega web, o prepare imágenes antes de procesarlas a través del punto final Comprimir imagen.

Entradas de blog relacionadas
Aún no hay ninguna entrada de blog sobre esta función; estará disponible próximamente.
Mientras tanto, echa un vistazo al blog de PDF4me para encontrar tutoriales y flujos de trabajo para todas las plataformas.
Visita el blog

Autenticando su API Pedido

Cada PDF4me REST API La llamada debe incluir su API clave en el Authorization Encabezado. Obtenga su clave desde el panel de control del desarrollador y manténgala fuera del código del lado del cliente.

Datos importantes que no debes perderte

All four parameters are required: including both format fields

docName, docContent, CurrentImageFormat, and NewImageFormat must all be present. A missing format parameter causes the API to return a 400 error. Always provide both format fields explicitly: do not assume the API will infer the source format from the file extension in docName.

CurrentImageFormat must match the actual binary format of docContent

The API uses CurrentImageFormat to select the correct decoding codec. If you send a PNG file but set CurrentImageFormat to JPG, decoding fails with a format error. Read the real format from your source file MIME type or binary header: never derive it solely from the filename extension, which can be wrong.

PNG transparency is lost when converting to JPG: use PNG, GIF, or BMP to keep alpha

JPG does not support an alpha channel. Transparent areas in a PNG or GIF source are filled with white (or a default background) during JPG conversion. If your image has a transparent background: logos, cut-out product photos, icons, convert to PNG, GIF, or BMP instead of JPG to preserve the transparency.

REST API Punto final

MétodoPunto final
POST/api/v2/ConvertImageFormat

URL base: https://api.pdf4me.com

Parámetros

⚠️ Se requieren los cuatro parámetros. El API Devuelve un error si falta algún campo.

ParámetroRequeridoTipoLo que haceEjemplo
docNameRequiredStringFilename of the source image including the file extension. Used for output file naming. Should reflect the actual format of the source file.company-logo.png
docContentRequiredBase64The complete source image file encoded as a Base64 string. Maximum file size: 50 MB. Do not include a data URL prefix: pass the raw Base64 string only.iVBORw0KGgoAAAANSUhEUg...
CurrentImageFormatRequiredEnumThe actual format of the source image in docContent. Must match exactly. Accepted values: BMP · GIF · JPG · PNG · TIFFPNG
NewImageFormatRequiredEnumThe target format for the converted output image. Accepted values: BMP · GIF · JPG · PNG · TIFFJPG

Campos de salida

CampoTipoDescripción
Contenido del archivoBase64La imagen convertida codificada como Base64. Decodificar a binario y guardar con la nueva extensión de archivo correcta.
Nombre del archivoStringNombre del archivo de la imagen de salida convertida.

Ejemplo de solicitud

Encabezados

Content-Type: application/json
Authorization: YOUR_API_KEY

Carga útil JSON

{
"docName": "company-logo.png",
"docContent": "iVBORw0KGgoAAAANSUhEUg...",
"CurrentImageFormat": "PNG",
"NewImageFormat": "JPG"
}

Respuesta

{
"File Content": "BASE64_CONVERTED_IMAGE_DATA",
"File Name": "company-logo.jpg"
}

Ejemplos de código

Casos de uso comunes

Standardise Legacy Assets to PNG for Web Delivery

Marketing teams often accumulate mixed BMP, TIFF, and GIF files from various sources. Convert them all to PNG in a batch processing loop: PNG gives lossless quality and wide browser support, making it the safest default web format for logos and graphics.

Convert Product Photography from TIFF to JPG

Studio photographs are typically delivered as TIFF (50-200 MB each). Convert to JPG before uploading to your e-commerce platform or CDN to reduce storage costs by 80-90%. Pair with the Compress Image endpoint for a complete optimisation pipeline.

Prepare Images for WebP Delivery

WebP images are 25-35% smaller than equivalent JPGs and supported by all modern browsers. Convert JPG or PNG assets to WebP to improve Core Web Vitals scores. Serve WebP with a JPG fallback using HTML picture elements.

Preguntas frecuentes

What image formats does the Convert Image Format API support?

The API supports BMP, GIF, JPG, PNG, and TIFF as both input (CurrentImageFormat) and output (NewImageFormat). These five formats cover the most common image types used in enterprise and web workflows.

Does CurrentImageFormat need to match the actual binary format of docContent?

Yes: always. The API uses CurrentImageFormat to select the correct decoding codec. A mismatch between the actual binary format and CurrentImageFormat causes a decoding failure. Read the real format from your file's MIME type or binary signature, not just the filename extension.

How does PNG-to-JPG conversion handle transparency?

JPG does not support an alpha channel. Transparent areas in a PNG source are replaced with a solid background colour (typically white) during conversion. If preserving transparency matters: logos, product cut-outs, icons, convert to PNG, GIF, or BMP instead of JPG.

Can I convert and compress an image in the same API call?

No: Convert Image Format only changes the format. To also compress, call Convert Image Format first to get the target format, then pass the result's File Content to the Compress Image endpoint with your chosen compression level. Chain both calls in your application.

What is the maximum file size accepted by this endpoint?

Up to 50 MB. For best performance keep images under 10 MB. Note that format conversion can change file size: converting a PNG to JPG typically reduces size, while converting JPG to TIFF may increase it significantly.

Relacionado APIs

Obtén ayuda