Add Picture"

From Documentation
Line 20: Line 20:
 
===Composer===
 
===Composer===
 
We use onUpload to get the picture byte stream data to be inserted into the sheet. Besides the picture byte stream data, user have to specify where to anchor the picture, too.
 
We use onUpload to get the picture byte stream data to be inserted into the sheet. Besides the picture byte stream data, user have to specify where to anchor the picture, too.
<source lang="java" high="3,10,12">
+
<source lang="java" high="9,10,12">
 
private Spreadsheet myss;
 
private Spreadsheet myss;
 
 

Revision as of 08:17, 28 October 2011


Available in ZK Spreadsheet EE only

Purpose

ZK Spreadsheet uses Range.addPicture (ClientAnchor, byte[], int) to insert a new picture into the sheet.

ZUML

<window vflex="1" width="100%" 
	apply="org.zkoss.zssessentials.config.AddPictureComposer">
    <spreadsheet id="myss" src="/WEB-INF/excel/config/addPicture.xlsx" maxrows="200"
        maxcolumns="40" vflex="1" width="100%">
    </spreadsheet>
    <button id="add" label="Add Picture" upload="true"/>
</window>

Composer

We use onUpload to get the picture byte stream data to be inserted into the sheet. Besides the picture byte stream data, user have to specify where to anchor the picture, too.

	private Spreadsheet myss;
	
	public void onUpload$add(UploadEvent evt) throws Exception {
		final Media media = evt.getMedia();
		byte[] image = media.getByteData();
		
		//add a picture
		Worksheet sheet = myss.getSelectedSheet();
		Range rng = Ranges.range(sheet);
		ClientAnchor anchor = new XSSFClientAnchor(0, 0, 0, 0, 2, 1, 7, 11); //C2:H12
		String fmt = media.getFormat();
		rng.addPicture(anchor, image, PictureHelper.getPictureFormat(fmt));
	}

ZKSsEss Spreadsheet AddPicture.png

View the complete source of ZUML addPicture.zul

View the complete source of composer AddPictureComposer.java

Version History

Last Update : 2011/10/28


Version Date Content
2.2.0 Oct. 28, 2011 API to insert a picture
     


All source code listed in this book is at Github.


Last Update : 2011/10/28

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.