欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

freemark中插入图片

程序员文章站 2024-03-20 15:29:22
...

freemark文件中的图片格式是BASE64,

模板中的图片代码块,${(img)!}是图片变量

<w:pict>
	  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="[email protected]@[email protected]@[email protected]@[email protected]@5xe" filled="f" stroked="f">
		<v:stroke joinstyle="miter"/>
		<v:formulas>
		  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
		  <v:f eqn="sum @0 1 0"/>
		  <v:f eqn="sum 0 0 @1"/>
		  <v:f eqn="prod @2 1 2"/>
		  <v:f eqn="prod @3 21600 pixelWidth"/>
		  <v:f eqn="prod @3 21600 pixelHeight"/>
		  <v:f eqn="sum @0 0 1"/>
		  <v:f eqn="prod @6 1 2"/>
		  <v:f eqn="prod @7 21600 pixelWidth"/>
		  <v:f eqn="sum @8 21600 0"/>
		  <v:f eqn="prod @7 21600 pixelHeight"/>
		  <v:f eqn="sum @10 21600 0"/>
		</v:formulas>
		<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
		<o:lock v:ext="edit" aspectratio="t"/>
	  </v:shapetype>
	  <w:binData w:name="wordml://02000001.jpg" xml:space="preserve">${(img)!}</w:binData>                  
	<v:shape id="_x0000_i1025" type="#_x0000_t75" style="width:69pt;height:62.25pt">                    
		<v:imagedata src="wordml://02000001.jpg" o:title="timg"/>                  
	</v:shape>                
</w:pict>

生成${(img)!}图片变量(BASE64格式)

public String getEmpAutograph(String filePath) {
		String img =null;
		if(StringUtils.isNotEmpty(filePath)){
			InputStream in = null;
			byte[] picdata = null;
			try {
				in = new FileInputStream(filePath);
				picdata = new byte[in.available()];
				in.read(picdata);
			} catch (Exception e) {
				e.printStackTrace();
			}finally{
				try {
					in.close();
				} catch (IOException e) {
					
					e.printStackTrace();
				}
			}
			BASE64Encoder encoder = new BASE64Encoder();
			img = encoder.encode(picdata);
			return img;
		}else{
			return null;
		}
	}