TCAX 字幕特效制作工具官方论坛 | ASS | TCAS | Python | Aegisub | Lua
标题:
PythonMagick
[打印本页]
作者:
milkyjing
时间:
2011-12-15 19:00:07
标题:
PythonMagick
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pythonmagick
http://stackoverflow.com/questio ... les-of-pythonmagick
http://www.imagemagick.org/download/python/
http://www.imagemagick.org/script/install-source.php
附件:
PythonMagick.7z
(2011-12-17 11:57:36, 2.41 MB) / 下载次数 3268
http://tcax.org/forum.php?mod=attachment&aid=MTM4fDJkYmViNTQzfDE3MzIyMjg5ODl8MHww
作者:
milkyjing
时间:
2011-12-16 09:10:25
http://wiki.python.org/moin/boos ... edirect=BoostPython
http://www.boost.org/doc/libs/1_ ... n/doc/building.html
http://www.boost.org/
http://www.boost.org/doc/libs/1_ ... tarted/windows.html
作者:
milkyjing
时间:
2011-12-16 09:42:08
To compile PythonMagick, you need
Python
Boost Python
ImageMagick
then you can make a win32 dll project, include all the PythonMagick source code. or simply use bjam.
build ImageMagick
http://www.imagemagick.org/scrip ... ws-installation.php
// Visual C++ does not define ssize_t by default.
#if !defined(__MINGW32__)
#if defined(_WIN64)
typedef __int64 ssize_t;
#else
typedef long ssize_t;
// change to
typedef __w64 int ssize_t;
// for compatible with pyconfig.h
#endif
#endif
复制代码
in Image.h modify the "= borderGeometryDefault" to the explicit const char *value. etc. (Note, for the latest ImageMagick, we needn't do this)
build Boost Python
http://www.boost.org/doc/libs/1_ ... n/doc/building.html
build PythonMagick
use bjam
附件:
pixMagick_Jamroot.zip
(2011-12-17 11:58:34, 534 Bytes) / 下载次数 2907
http://tcax.org/forum.php?mod=attachment&aid=MTM5fGZjM2Q3NDNlfDE3MzIyMjg5ODl8MHww
附件:
PythonMagick_Jamroot.zip
(2011-12-17 11:58:34, 1010 Bytes) / 下载次数 3347
http://tcax.org/forum.php?mod=attachment&aid=MTQwfDQ0NzFmM2QyfDE3MzIyMjg5ODl8MHww
作者:
milkyjing
时间:
2011-12-16 14:19:22
http://www.boost.org/doc/libs/1_ ... l/python/hello.html
http://www.boost.org/doc/libs/1_ ... ython/exposing.html
http://www.boost.org/doc/libs/1_ ... n/doc/building.html
http://www.boost.org/boost-build ... erview/targets.html
http://www.boost.org/boost-build ... ltins/features.html
http://www.boost.org/boost-build ... rview/projects.html
作者:
lazycat
时间:
2011-12-16 18:13:14
新插件?
作者:
milkyjing
时间:
2011-12-16 21:18:01
lazycat 发表于 2011-12-16 18:13
新插件?
恩, 在填坑...
作者:
milkyjing
时间:
2011-12-17 01:16:03
http://wiki.python.org/moin/boost.python/BuildingExtensions
作者:
milkyjing
时间:
2012-1-31 20:16:06
标题:
ImageMagick Usage: (Also is what you can do with util.magick)
http://www.imagemagick.org/Usage/
http://www.imagemagick.org/Usage/fonts/
http://www.imagemagick.org/Magick++/Documentation.html
http://www.imagemagick.org/script/command-line-tools.php
http://www.imagemagick.org/script/command-line-processing.php
http://www.imagemagick.org/script/command-line-options.php
http://www.fmwconcepts.com/imagemagick/
http://www.imagemagick.org/Usage/text/
http://www.imagemagick.org/discourse-server/viewforum.php?f=23
http://members.shaw.ca/el.supremo/MagickWand/
http://www.imagemagick.org/Usage/blur
作者:
milkyjing
时间:
2012-2-1 12:59:38
标题:
pattern:checkerboard
http://www.catb.org/~esr/faqs/smart-questions.html
http://www.imagemagick.org/disco ... hp?f=23&t=20271
http://comments.gmane.org/gmane. ... hicsmagick.help/322
作者:
milkyjing
时间:
2012-2-2 10:31:38
2012-2-2 10:31:20 上传
下载附件
(586 Bytes)
2012-2-2 10:31:29 上传
下载附件
(569 Bytes)
图片附件:
out_checkerboard2.png
(2012-2-2 10:31:29, 569 Bytes) / 下载次数 1163
http://tcax.org/forum.php?mod=attachment&aid=MjIxfGM2YTc2MGZkfDE3MzIyMjg5ODl8MHww
图片附件:
out_checkerboard.png
(2012-2-2 10:31:20, 586 Bytes) / 下载次数 1161
http://tcax.org/forum.php?mod=attachment&aid=MjIwfGM3NzExYjYyfDE3MzIyMjg5ODl8MHww
作者:
milkyjing
时间:
2012-2-2 21:18:04
标题:
PS text effects
http://www.hongkiat.com/blog/22- ... t-effect-tutorials/
http://www.hongkiat.com/blog/50- ... -tutorials-part-ii/
http://www.smashingmagazine.com/ ... t-effect-tutorials/
http://design.yesky.com/photoshop_sample/
http://www.68ps.com/jc/ps_wz.asp
作者:
milkyjing
时间:
2012-2-2 23:28:22
标题:
Expose std::list to python
http://wiki.python.org/moin/boost.python/StlContainers
http://www.boost.org/doc/libs/1_ ... thon_converter.html
http://www.cplusplus.com/reference/stl/list/
http://www.boost.org/doc/libs/1_ ... oc/v2/indexing.html
http://wiki.python.org/moin/boos ... C.2B-.2B-_container
http://stackoverflow.com/questio ... n-list-to-stdvector
http://www.yolinux.com/TUTORIALS/LinuxTutorialC++STL.html#LIST
作者:
milkyjing
时间:
2012-2-3 14:17:50
标题:
font size issue
http://www.emdpi.com/fontsize.html
http://www.emdpi.com/screendpi.html
http://freetype.sourceforge.net/freetype2/docs/glyphs/index.html
作者:
milkyjing
时间:
2012-2-3 22:07:23
标题:
TTC TTF
http://hi.baidu.com/jngd546/blog ... eb380892457e20.html
http://moresam.blogbus.com/logs/4122942.html
http://blog.csdn.net/menliwxj/article/details/5260581
作者:
milkyjing
时间:
2012-2-11 06:25:27
标题:
More usage
http://www.imagemagick.org/Usage/transform/#evaluate
http://www.imagemagick.org/Usage/color_mods/#clut
http://www.imagemagick.org/Usage/distorts/#distort
http://www.imagemagick.org/Usage/compose/#composite
http://www.imagemagick.org/Usage/resize/#resize
http://www.imagemagick.org/Usage/photos/#orient
http://www.imagemagick.org/Usage/warping/#animations
http://www.imagemagick.org/Usage/color_basics/#channel
欢迎光临 TCAX 字幕特效制作工具官方论坛 | ASS | TCAS | Python | Aegisub | Lua (http://tcax.org/)
Powered by Discuz! X2