If you see the error message below when trying to activate SIP Toolbox in SCILAB...
Do this:
chdir(ImageMagickPath);
link('CORE_RL_magick_.dll');
Then reclick the "Toolboxes" button.
Reference:
http://www.scilab.org/contrib/index_contrib.php?page=displayContribution&fileID=146
2 comments:
mam, i found out how to remove the problem permanently.
go to C:\Program Files\scilab-4.1.2\contrib\siptoolbox
then open loader.sce file.
insert the lines
chdir(ImageMagickPath);
link('CORE_RL_magick_.dll');
after the lines
// load the run-time dlls of ImageMagick
ImageMagickPath=libsip_path+'lib\';
and before the lines
link(ImageMagickPath + 'CORE_RL_bzlib_.dll');
link(ImageMagickPath + 'CORE_RL_jbig_.dll');
link(ImageMagickPath + 'CORE_RL_jpeg_.dll');
link(ImageMagickPath + 'CORE_RL_lcms_.dll');
then save. This should fix the problem permanently. :)
Cool! Works like a charm
Post a Comment