zoukankan
html css js c++ java
Delphi 取JPG图片内的Exif信息
<span style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, simsun, u5b8bu4f53; font-size: 14px; line-height: 25px; "><span style="line-height: 25px; color: rgb(0, 128, 0); ">//</span><span style="line-height: 25px; color: rgb(0, 128, 0); ">取Exif信息</span><span style="line-height: 25px; color: rgb(0, 128, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /></span><span style="line-height: 25px; color: rgb(0, 0, 0); ">function GetExifItem(GPImage:TGPImage;ItemID: PROPID): String;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " />var<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> PropSize: UINT;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> PropItem: PPropertyItem;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S:PChar;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S1,S2:String;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " />begin<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> PropSize :</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> GPImage.GetPropertyItemSize(ItemID);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> </span><span style="line-height: 25px; color: rgb(0, 0, 255); ">if</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropSize</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">0</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> then begin<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> Result:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">''</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> Exit;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> end;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> GetMem(PropItem ,PropSize);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> GPImage.GetPropertyItem(ItemID, PropSize, PropItem);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> </span><span style="line-height: 25px; color: rgb(0, 128, 0); ">//</span><span style="line-height: 25px; color: rgb(0, 128, 0); ">字符</span><span style="line-height: 25px; color: rgb(0, 128, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /></span><span style="line-height: 25px; color: rgb(0, 0, 0); "> </span><span style="line-height: 25px; color: rgb(0, 0, 255); ">if</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropItem.type_</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropertyTagTypeASCII then begin<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> Result:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">PChar(PropItem.Value);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> end;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> </span><span style="line-height: 25px; color: rgb(0, 128, 0); ">//</span><span style="line-height: 25px; color: rgb(0, 128, 0); ">分数</span><span style="line-height: 25px; color: rgb(0, 128, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /></span><span style="line-height: 25px; color: rgb(0, 0, 0); "> </span><span style="line-height: 25px; color: rgb(0, 0, 255); ">if</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> (PropItem.type_</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropertyTagTypeRational)<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> or (PropItem.type_</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">PropertyTagTypeSRational) then begin<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">PChar(PropItem.Value);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S1:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">3</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">1</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">0</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S2:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">7</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">6</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">5</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">4</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> Result:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToStr(StrToInt(</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">$</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">S1))</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">/</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToStr(StrToInt(</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">$</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">S2));<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> end;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> </span><span style="line-height: 25px; color: rgb(0, 128, 0); ">//</span><span style="line-height: 25px; color: rgb(0, 128, 0); ">数字</span><span style="line-height: 25px; color: rgb(0, 128, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /></span><span style="line-height: 25px; color: rgb(0, 0, 0); "> </span><span style="line-height: 25px; color: rgb(0, 0, 255); ">if</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropItem.type_</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropertyTagTypeShort then begin<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">PChar(PropItem.Value);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> S1:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">1</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">0</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> Result:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToStr(StrToInt(</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">$</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">S1));<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> end;<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> </span><span style="line-height: 25px; color: rgb(0, 128, 0); ">//</span><span style="line-height: 25px; color: rgb(0, 128, 0); ">字节</span><span style="line-height: 25px; color: rgb(0, 128, 0); "><br style="line-height: 25px; " /></span><span style="line-height: 25px; "><span style="line-height: 25px; color: rgb(0, 0, 0); ">{</span><span style="line-height: 25px; color: rgb(0, 0, 255); ">if</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropItem.type_</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); "> PropertyTagTypeByte then begin<br style="line-height: 25px; " /> S:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">PChar(PropItem.Value);<br style="line-height: 25px; " /> S1:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">1</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">)</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToHex(Ord(S[</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">0</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">]),</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">2</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">);<br style="line-height: 25px; " /> Result:</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">=</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">IntToStr(StrToInt(</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">$</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">'</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">+</span><span style="line-height: 25px; color: rgb(0, 0, 0); ">S1));<br style="line-height: 25px; " /> end;}</span></span><span style="line-height: 25px; color: rgb(0, 0, 0); "><br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " /> FreeMem(PropItem);<br style="line-height: 25px; " /><img alt="" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" align="top" style="line-height: 25px; border-top- 0px; border-right- 0px; border-bottom- 0px; border-left- 0px; border-style: initial; border-color: initial; max- 100%; " />end;</span></span>
查看全文
相关阅读:
SIP头域说明
android.os.NetworkOnMainThreadException异常
"Only the original thread that created a view hierarchy can touch its views"引发的思考_Handler的使用
sip命令与音视频rtp通话完整流程分析
在Windows下搭建Android开发环境(摘自百度经验)
jquery dialog 打开的时候自动聚焦解决方法
对于数组(字符串)slice方法的总结
SWIFT语言中的泛型编程 【GENERIC】【PART 2】
手动调用playground的XCPCaptureValue展示Swift过程数据
Swift语言相关资源贴
原文地址:https://www.cnblogs.com/whisht/p/2319339.html
最新文章
Lucas,.net Web框架
分享一个开源oa-JEOS办公系统
C# -- ITextSharp生成带水印的PDF
Mssql根据表名获取字段
Jquery:ajax跨域请求处理
js操作数组
MVC简单实现插件Demo-从底层理解MVC路由匹配浏览器请求的URL
Asp.Net图片上传后缩略图空白
MVC学习日记-实现一个EF容器管理一个数据库中的多个表
MVC下实现分页
热门文章
阿里云OSS文件管理
基于Retrofit2.0+RxJava+Dragger2实现不一样的Android网络构架搭建(转载)
40个比较重要的Android面试题
具有288种侧滑效果的侧滑菜单(转载)
MySQL单条SQL语句性能评估
frisby用例动态链
微服务:构建高可伸缩应用
unimrcp apt task
Android Wifi software layers
Android中使用多进程的应用程序注意
Copyright © 2011-2022 走看看