2014-09-03 10 views
8

Я использую библиотеку Magick.net в веб-приложения mvc3 и эти шаги я сделалНе удалось загрузить выпуск «Magick.NET-x64» файл или сборку на MVC приложения

Мой проект таргетингом AnyCPU и мой machine is 64bit
Добавление ссылки на Magick.NET-x64.dll в проект. установлен Visual C++ Redistributable для Visual Studio 2012 Update 4 здесь http://www.microsoft.com/en-us/download/details.aspx?id=30679 установлен Ghostscript 9,14 для Windows (64 бит) на машине Добавлено

<add assembly="Magick.NET-x64, Version=7.0.0.0002, Culture=neutral, PublicKeyToken=2004825badfa91ec" /> 

на файле web.config

Проект успешно переделали [и все DLLки находятся в папке бин также], но во время работы я получаю исключение

Could not load file or assembly 'Magick.NET-x64' or one of its dependencies. An attempt was made to load a program with an incorrect format.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information > about the error and where it originated in the code.

Exception Details: System.BadImageFormatException: Could not load file or assembly 'Magick.NET-x64' or one of its dependencies. An attempt was > made to load a program with an incorrect format.

Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the > exception can be identified using the exception stack trace below.

Assembly Load Trace: The following information can be helpful to determine why the assembly 'Magick.NET-x64' could not be loaded.

=== Pre-bind state information === 
LOG: DisplayName = Magick.NET-x64 
(Partial) 
WRN: Partial binding information was supplied for an assembly: 
WRN: Assembly Name: Magick.NET-x64 | Domain ID: 6 
WRN: A partial bind occurs when only part of the assembly display name is provided. 
WRN: This might result in the binder loading an incorrect assembly. 
WRN: It is recommended to provide a fully specified textual identity for the assembly, 
WRN: that consists of the simple name, version, culture, and public key token. 
WRN: See whitepaper http://go.microsoft.com/fwlink/?LinkId=109270 for more information and common solutions to this issue. 
LOG: Appbase = file:///C:/Fagbokforlaget/SourceCodes/fbf_internal/picsilo/Source/ImageTagger/ 
LOG: Initial PrivatePath = C:\Fagbokforlaget\SourceCodes\fbf_internal\picsilo\Source\ImageTagger\bin 
Calling assembly : (Unknown). 

LOG: This bind starts in default load context. 
LOG: Using application configuration file: C:\Fagbokforlaget\SourceCodes\fbf_internal\picsilo\Source\ImageTagger\web.config 
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config. 
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind). 
LOG: Attempting download of new URL file:///C:/Users/jibinmathew/AppData/Local/Temp/Temporary ASP.NET Files/root/a5b5e44f/dc1c4c69/Magick.NET-x64.DLL. 
LOG: Attempting download of new URL file:///C:/Users/jibinmathew/AppData/Local/Temp/Temporary ASP.NET Files/root/a5b5e44f/dc1c4c69/Magick.NET-x64/Magick.NET-x64.DLL. 
LOG: Attempting download of new URL file:///C:/Fagbokforlaget/SourceCodes/fbf_internal/picsilo/Source/ImageTagger/bin/Magick.NET-x64.DLL. 
ERR: Failed to complete setup of assembly (hr = 0x8007000b). Probing terminated. 
+2

Скорее всего x86/x64 рассогласование. Похоже, что сборка, на которую вы ссылаетесь, - это только x64 ... Компиляция вашего проекта, поскольку AnyCPU в этом случае опасна, поскольку она может быть загружена в 32-битный процесс (как вы, вероятно, наблюдаете сейчас со всеми журналами слияния, которые вы опубликовали). –

+1

Я тоже пробовал на x64. Но те же исключения я получаю даже в режиме 64 –

ответ

7

Там, кажется, проблему при работе с т он 64-битная версия Magick.NET в Visual Studio 2013 IIS Express. Вам необходимо указать set a registry key в соответствии с нижеследующим ответом 'High quality JPEG compression with c#'. Вы можете установить этот флаг или переключиться на версию AnyCPU версии Magick.NET.

+0

Спасибо ОЧЕНЬ очень. Я просто купил от IIS Express до локального IIS, и все просто сработало! Вы были правы, я использовал явно 64-битную версию (не AnyCPU). – Roman

1

Убедитесь, что также установлен распространяемый пакет C++.

https://magick.codeplex.com/documentation

Make sure you have installed Visual C++ Redistributable for Visual Studio

.NET 4.0: Visual C++ Redistributable for Visual Studio 2015 (x64 or x86) 
.NET 2.0: Visual C++ Redistributable for Visual Studio 2008 (x64 or x86). 
+1

Это больше не требуется, так как Magick.NET 7.0.0.0020 – dlemstra

+0

@dlemstra на 7.0.1.101, он даже не работает после установки C++ Redists. –

9

Пересмотр в blog post по @dlemstra образом расположенных имеет самое простое решение я нашел для этого:

В VS2013/2015, перейдите в меню Сервис -> Параметры - > Проекты и решения -> Веб-проекты и выберите «Использовать 64-битную версию IIS Express для веб-сайтов и проектов».

Use 64 bit IIS Express

 Смежные вопросы

  • Нет связанных вопросов^_^