OJODIGITAL

 
Software Aquí podéis hablar de cualquier programa que tenga que ver con la fotografía, cómo usarlos, nuevas versiones, nuevos programas, preguntas y respuestas sobre ellos, etc...

Respuesta
  #1 (permalink)  
Antiguo 06-abr-2006, 13:43
Avatar de Abubilla
Enganchad@ a los foros
 
Fecha de Ingreso: febrero-2006
Ubicación: Galicia
Mensajes: 791
Solucion a como Abrir Raw de la 30D en CS2

He encontrado esto que parecen ser las instrucciones para editar provisionalmente los Raws de la 30D en el Camera Raw del Adobe (es que mi inglés es penoso y no me aclaro, a ver si alguien del foro nos ilumina


Disclaimer: The original version of this script was for the 20D and is located http://fors.net/scripts/20D/ All I did was modify it to suppor the new 30D because I need it.
Use it at your own risk. This script SHOULD work for both PC and MAc but I only have a pc so I cannot test it on MAC
To Install:
1. Go to http://www.adobe.com/support/downloa...jsp?ftpID=3267 and download Camera Raw 3.3
2. Copy Camera Raw.8bi to your /Plug-Ins/File Formats/ directory
2. Go to your PhotoshopCS(2)/Presets/Scripts
2. Create a new file and call it Unofficial30DSupport.js and paste into it the section denoted below
2. Restart Photoshop.
3. Run the script from the File/Scripts Menu.
To Uninstall:
1. Run the script again from the File/Scripts Menu. It will ask you if you want to remove Unofficial 30D support.
Warning:
This script makes a copy of the official ACR plug-in and performs a modification on the copy. It does not alter the original plug-in. If anything goes wrong in the process of writing this new copy, it may prevent you from being able to launch Photoshop. To correct the situation, you’ll need to find the file ‘Camera Raw Unofficial Canon 30D.8bi’ in your Photoshop/Plug-Ins/File Formats folder and delete it.
Adobe does not yet officially support the Canon 30D raw files and most likely will not provide technical assistance with this.
UPDATE: It seems something is changing in the script when I am pasting it in wordpress, please just download it here
——————————— Begin of copy section ————————————————-
/*
* Written by: Thomas Fors.
*
* This script is free!
*
* I ask that if you find it useful, please contact Canon and tell them you
* use Adobe Camera Raw for your raw conversions. Ask them to start
* cooperating with Adobe so future Canon cameras will be supported by ACR
* much quicker after release.
*
* You can contact Canon here:
* http://consumer.usa.canon.com/ir/con...categoryid=601
*
* You might also consider asking them to support a standard RAW format.
* http://rawformat.com
*
* Finally, the legal stuff..
*
* THIS SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Find the Official ACR plugin in the expected location or ask the user to help
var originalACR = File(Folder.startup + “/Plug-Ins/File Formats/Camera Raw.8bi”);
if ( !originalACR.exists ) {
if ( Folder.fs == “Windows” ) {
originalACR = File.openDialog(”Find and Select the ‘Camera Raw.8bi’ File”, “Photoshop Plug-ins:*.8bi”);
} else if ( Folder.fs == “Macintosh” ) {
originalACR = File.openDialog(”Find and Select the ‘Camera Raw.8bi’ File”, pluginFilter);
}
}
// Check if hack already exists and prompt the user asking what to do
var bRemove = false;
var bProceed = false;
var newACR = File(originalACR.path + “/Camera Raw Unofficial Canon 30D.8bi”);
if ( newACR.exists ) {
bRemove = confirm(”Unofficial Canon 30D support already exists.\rDo you want to remove?”);
if (bRemove) {
newACR.remove();
alert(”Unofficial Canon 30D support has been successfully removed.\rYou should restart Photoshop.”);
}
} else {
bProceed = confirm(”Do you want to add Unofficial Canon 30D support?”);
}
if ( bProceed ) {
// Create a backup copy of the original ACR file to work with.
originalACR.copy(newACR);
// Read backup copy of ACR into memory
newACR.encoding = “BINARY”;
newACR.open(”r”);
var memoryACR = newACR.read();
newACR.close();
// Perform some sanity checks to make sure this is the ACR plug-in
var validACR = true;
if (!memoryACR.match(/Adobe/)) validACR = false;
if (!memoryACR.match(/Camera Raw/)) validACR = false;
if (!memoryACR.match(/Thomas Knoll/)) validACR = false;
if (!memoryACR.match(/Canon EOS-1D Mark II/)) validACR = false;
if ( validACR ) {
// Do the hack
var loc = memoryACR.search(/Canon EOS-1D Mark II/);
newACR.open(”e”);
newACR.seek(loc, 0);
newACR.write(”Canon EOS 30D”);
newACR.close();
alert(”Unofficial Canon 30D support has been added! \rYou need to restart Photoshop.”);
} else {
alert(”Official ACR Plug-in not found or incorrect version found. Cannot create Unofficial Canon 30D support. ”);
}
}
//===============================
// Utility function to filter
// plugin files in dialog on Mac
// platform
//===============================
function pluginFilter(f) {
lcName = f.name;
lcName.toLowerCase();
if ( lcName.indexOf(”.8bi”) == (f.name.length - 4) ) {
return true;
} else if ( f instanceof Folder ) {
return true;
} else {
return false;
}
}
————————– End of copy section ————————————————-

Última edición por Abubilla; 06-abr-2006 a las 16:57.
Responder Citando
Publicidad
  #2 (permalink)  
Antiguo 03-ago-2006, 12:19
Avatar de Marchelo
Lleva poco por aquí
 
Fecha de Ingreso: mayo-2006
Ubicación: ALICANTE
Mensajes: 34
Enviar un mensaje por MSN a Marchelo
Estoy peleando con el tema y ya he bajado hasta una versión superior del plugin y si que visualizo pero no me deja procesar el RAW directamente, tengo que convertirlo con el Software de la cámara a TIFF y luego pasarlo a PS, antes con la Canon 300D ni con Canon S45 no tenía ese problema porque no eran el nuevo formarto y tan sólo usaba el PS.
Responder Citando
  #3 (permalink)  
Antiguo 04-ago-2006, 13:23
Avatar de Marchelo
Lleva poco por aquí
 
Fecha de Ingreso: mayo-2006
Ubicación: ALICANTE
Mensajes: 34
Enviar un mensaje por MSN a Marchelo
Por fin logro contralar todo desde PS pero me queda una espina, en el explorador de Adobe Bridge no se visualizan y he colocado el plugin tambien en el directorio de Brige pero nada...
¿Sabes como lograr visualizarlas?

Un saludo.
Responder Citando
  #4 (permalink)  
Antiguo 04-ago-2006, 15:47
Avatar de xevigut
Habitual
 
Fecha de Ingreso: agosto-2005
Ubicación: manlleu
Mensajes: 275
Enviar un mensaje por Yahoo  a xevigut
ahora ya no hace falta ningun scrip raro, solo teneis que bajaros el ultimo plugin de camara raw,(version 3.4) y ponerlo en esta carpeta:
C:\Archivos de programa\Archivos comunes\Adobe\Plug-Ins\CS2\File Formats.
sustituyendo el que encontrareis dentro.
En caso que no funcionara, cosa que no creo, renovais el caché central, creo que en herramientas del bridge lo encontrareis, y ya esta........normalmente claro!
__________________
www.xevivilaregut.com
Responder Citando
  #5 (permalink)  
Antiguo 04-ago-2006, 19:07
Avatar de Abubilla
Enganchad@ a los foros
 
Fecha de Ingreso: febrero-2006
Ubicación: Galicia
Mensajes: 791
Cita:
Iniciado por xevigut
ahora ya no hace falta ningun scrip raro, solo teneis que bajaros el ultimo plugin de camara raw,(version 3.4) y ponerlo en esta carpeta:
C:\Archivos de programa\Archivos comunes\Adobe\Plug-Ins\CS2\File Formats.
sustituyendo el que encontrareis dentro.
En caso que no funcionara, cosa que no creo, renovais el caché central, creo que en herramientas del bridge lo encontrareis, y ya esta........normalmente claro!
Todo el rollo que posteé (ya ni lo recordaba) era la solución que se daba por aquellas fechas (Abril) cuando aún no había salido la actualización del Camera Raw. Ahora con hacer lo que dice xevigut está listo, aunque creo que es importante purgar la cache central como indicas. Por cierto ¿alguien sabe si el Camera Raw nuevo ya existe en castellano?
Salu2
__________________
Mis mensajes estan redactados sin tildes deliberadamente para poder ser leídos por todos los lectores de mensajes y tambien, para ser sinceros, por que soy bastante holgazan y acabo antes sin ponerlos
Unas fotillos:Mi pagina con unas humildes fotos ha muerto. Estoy buscando algun sitio en que refugiarme
Responder Citando
Respuesta

Marcadores

Herramientas
Desplegado Califica este Tema
Califica este Tema:

Normas de Publicación
No puedes crear nuevos temas
No puedes responder temas
No puedes subir archivos adjuntos
No puedes editar tus mensajes

Los Códigos BB están Activado
Las Caritas están Activado
[IMG] está Activado
El Código HTML está Desactivado
Trackbacks are Activado
Pingbacks are Activado
Refbacks are Activado
Ir al Foro