예제 #1
0
 // Metafile 回调
 private bool MetafileCallback(EmfPlusRecordType recordType, int flags, int dataSize, IntPtr data, PlayRecordCallback callbackData)
 {
     byte[] dataArray = null;
     if (data != IntPtr.Zero)
     {
         // Copy the unmanaged record to a managed byte buffer
         // that can be used by PlayRecord.
         dataArray = new byte[dataSize];
         Marshal.Copy(data, dataArray, 0, dataSize);
     }
     _printMetafile.PlayRecord(recordType, flags, dataSize, dataArray);
     return(true);
 }