<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?action=history&amp;feed=atom&amp;title=lmrcImagePrint%28API%29</id>
		<title>lmrcImagePrint(API) - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?action=history&amp;feed=atom&amp;title=lmrcImagePrint%28API%29"/>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcImagePrint(API)&amp;action=history"/>
		<updated>2026-05-04T17:10:47Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.6</generator>

	<entry>
		<id>http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcImagePrint(API)&amp;diff=3792&amp;oldid=prev</id>
		<title>Kinoshita: Created page with &quot;DataManip/mrcImage/src/'''lmrcImagePrint''' is API to image information in output mrc file as several formats. It is used by mrcImagePrint, mrcInfo.  == constant == ==...&quot;</title>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcImagePrint(API)&amp;diff=3792&amp;oldid=prev"/>
				<updated>2014-09-03T00:30:19Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;DataManip/mrcImage/src/&amp;#039;&amp;#039;&amp;#039;lmrcImagePrint&amp;#039;&amp;#039;&amp;#039; is API to image information in output mrc file as several formats. It is used by &lt;a href=&quot;/Eos/index.php/mrcImagePrint&quot; title=&quot;mrcImagePrint&quot;&gt;mrcImagePrint&lt;/a&gt;, &lt;a href=&quot;/Eos/index.php/mrcInfo&quot; title=&quot;mrcInfo&quot;&gt;mrcInfo&lt;/a&gt;.  == constant == ==...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;DataManip/mrcImage/src/'''lmrcImagePrint''' is API to image information in output mrc file as several formats. It is used by [[mrcImagePrint]], [[mrcInfo]].&lt;br /&gt;
&lt;br /&gt;
== constant ==&lt;br /&gt;
===Setting for PSfile===&lt;br /&gt;
It is used as value or string of mode in mrcImagePSFilePrint.(combinable)&lt;br /&gt;
 #define mrcImagePrintMode_ImageDensity        (0x00000001)&lt;br /&gt;
 #define mrcImagePrintMode_ImageDensity_String &amp;quot;ImageDensity&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_Contour             (0x00000002)&lt;br /&gt;
 #define mrcImagePrintMode_Contour_String      &amp;quot;Contour(DiffrentLineWidth)&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_Contour2            (0x00000004)&lt;br /&gt;
 #define mrcImagePrintMode_Contour2_String     &amp;quot;Contour(SameLineWidth)&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_ImageCircle         (0x00000008)&lt;br /&gt;
 #define mrcImagePrintMode_ImageCircle_String  &amp;quot;BlackCircles&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_Scale               (0x00000010)&lt;br /&gt;
 #define mrcImagePrintMode_Scale_String        &amp;quot;Scale&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_Centre              (0x00000020)&lt;br /&gt;
 #define mrcImagePrintMode_Centre_String       &amp;quot;Centre Mark&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Setting for ASCII===&lt;br /&gt;
It is used as value or string of mode in mrcImageASCIIFilePrint.(combinable)&lt;br /&gt;
 #define mrcImagePrintMode_ASCII_Amp           (0x01000000)&lt;br /&gt;
 #define mrcImagePrintMode_ASCII_Amp_String    &amp;quot;Amplitude by AsciiFile&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_ASCII_LogAmp        (0x02000000)&lt;br /&gt;
 #define mrcImagePrintMode_ASCII_LogAmp_String &amp;quot;Log of Amplitude by AsciiFile&amp;quot;&lt;br /&gt;
 #define mrcImagePrintMode_ASCII_Phase         (0x04000000)&lt;br /&gt;
 #define mrcImagePrintMode_ASCII_Phase_String  &amp;quot;Phase by AsciiFile&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== struct ==&lt;br /&gt;
For Setting data of mrcImagePSFilePrint&lt;br /&gt;
 typedef struct mrcImagePSFilePrintInfo  {&lt;br /&gt;
 	mrcImageParaTypeReal scale;&lt;br /&gt;
 	mrcImageParaTypeReal contourLineColorChange;&lt;br /&gt;
 	mrcImageParaTypeReal contourLineWidthStart;&lt;br /&gt;
 	mrcImageParaTypeReal contourLineWidthStep;&lt;br /&gt;
 	long centre; /* 0: bottom right or 1:centre */	&lt;br /&gt;
 	char whichSection; /* [x|y|z] */	&lt;br /&gt;
 	double untwistAngle; /* untwist Image */&lt;br /&gt;
 	psImageInfo psInfo;&lt;br /&gt;
 	mrcImageParaTypeReal circleRadius;&lt;br /&gt;
 } mrcImagePSFilePrintInfo;&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
===Output as PS file===&lt;br /&gt;
 extern void mrcImagePSFilePrint(FILE* fpt, mrcImage* mrc, char* message, mrcImagePSFilePrintInfo info, long nContour, float* level, long mode);&lt;br /&gt;
&lt;br /&gt;
===Output as ASCII===&lt;br /&gt;
 extern void mrcImageASCIIFilePrint(FILE* fpt, mrcImage* mrc, char* message, float scale, long nContour, float* level, long mode);&lt;br /&gt;
&lt;br /&gt;
===Output mrc file Information===&lt;br /&gt;
 extern void mrcInfoPrint(FILE* fpt, mrcImage* mrc, mrcImageParaTypeInteger mode);&lt;/div&gt;</summary>
		<author><name>Kinoshita</name></author>	</entry>

	</feed>