org.apache.xmlgraphics.image.loader.impl.PreloaderEMF Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlgraphics-commons Show documentation
Show all versions of xmlgraphics-commons Show documentation
Apache XML Graphics Commons is a library that consists of several reusable
components used by Apache Batik and Apache FOP. Many of these components
can easily be used separately outside the domains of SVG and XSL-FO.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id: PreloaderEMF.java 1576437 2014-03-11 17:49:35Z vhennebert $ */
package org.apache.xmlgraphics.image.loader.impl;
import java.io.IOException;
import java.nio.ByteOrder;
import javax.imageio.stream.ImageInputStream;
import javax.xml.transform.Source;
import org.apache.xmlgraphics.image.loader.ImageContext;
import org.apache.xmlgraphics.image.loader.ImageException;
import org.apache.xmlgraphics.image.loader.ImageInfo;
import org.apache.xmlgraphics.image.loader.ImageSize;
import org.apache.xmlgraphics.image.loader.util.ImageUtil;
import org.apache.xmlgraphics.util.UnitConv;
/**
* Image preloader for EMF images.
*/
public class PreloaderEMF extends AbstractImagePreloader {
/** Length of the EMF header */
protected static final int EMF_SIG_LENGTH = 88;
/** offset to signature */
private static final int SIGNATURE_OFFSET = 40;
/** offset to width */
private static final int WIDTH_OFFSET = 32;
/** offset to height */
private static final int HEIGHT_OFFSET = 36;
/** offset to horizontal resolution in pixel */
private static final int HRES_PIXEL_OFFSET = 72;
/** offset to vertical resolution in pixel */
private static final int VRES_PIXEL_OFFSET = 76;
/** offset to horizontal resolution in mm */
private static final int HRES_MM_OFFSET = 80;
/** offset to vertical resolution in mm */
private static final int VRES_MM_OFFSET = 84;
/** {@inheritDoc} */
public ImageInfo preloadImage(String uri, Source src, ImageContext context)
throws IOException, ImageException {
if (!ImageUtil.hasImageInputStream(src)) {
return null;
}
ImageInputStream in = ImageUtil.needImageInputStream(src);
byte[] header = getHeader(in, EMF_SIG_LENGTH);
boolean supported
= ((header[SIGNATURE_OFFSET + 0] == (byte) 0x20)
&& (header[SIGNATURE_OFFSET + 1] == (byte) 0x45)
&& (header[SIGNATURE_OFFSET + 2] == (byte) 0x4D)
&& (header[SIGNATURE_OFFSET + 3] == (byte) 0x46));
if (supported) {
ImageInfo info = new ImageInfo(uri, "image/emf");
info.setSize(determineSize(in, context));
return info;
} else {
return null;
}
}
private ImageSize determineSize(ImageInputStream in, ImageContext context)
throws IOException, ImageException {
in.mark();
ByteOrder oldByteOrder = in.getByteOrder();
try {
ImageSize size = new ImageSize();
// BMP uses little endian notation!
in.setByteOrder(ByteOrder.LITTLE_ENDIAN);
//resolution
in.skipBytes(WIDTH_OFFSET);
int width = (int)in.readUnsignedInt();
int height = (int)in.readUnsignedInt();
in.skipBytes(HRES_PIXEL_OFFSET - WIDTH_OFFSET - 8);
long hresPixel = in.readUnsignedInt();
long vresPixel = in.readUnsignedInt();
long hresMM = in.readUnsignedInt();
long vresMM = in.readUnsignedInt();
double resHorz = hresPixel / UnitConv.mm2in(hresMM);
double resVert = vresPixel / UnitConv.mm2in(vresMM);
size.setResolution(resHorz, resVert);
width = (int)Math.round(UnitConv.mm2mpt(width / 100f));
height = (int)Math.round(UnitConv.mm2mpt(height / 100f));
size.setSizeInMillipoints(width, height);
size.calcPixelsFromSize();
return size;
} finally {
in.setByteOrder(oldByteOrder);
in.reset();
}
}
}