NoCord® DC to AC Power Inverters
|
|
|
These NoCord brand 12v DC to 120v AC power inverters are micro processor controlled for the ultimate in energy efficient and quiet AC to DC power inverters. Available in 200w and 400w sizes. |
NoCord® DC to AC Power Inverters
200 Watt Inverter
|
MSRP $39.99
|
|
NoCord® DC to AC Power Inverters
400 Watt Inverter
|
MSRP $49.99
|
|
|
|
The NoCord DC to AC Power inverters are available in 200 Watt and 400 Watt varieties. These are great for emergency power outage type situations or for outdoor use.
The superior surge capacity of the NoCord Power Inverters allow them to handle even the most difficult loads, including color televisions, TV/VCR combos,
radios, or electrical drills. These extremely advanced microprocessor controlled units run cooler and more reliably than any other inverters in their class.
They also sport the higest efficiency available (up to 90%) which translates into longer running time and extended battery life. These Power Inverters draw
power from either standard 12-volt automobile or marine batteries or from portable high power 12-volt sources.
Please note that the circuitry in your car's cigarrette lighter can usually only handle 150 Watts of electricity. If you wish to increase this electrical load, you need to run the inverter directly from your car's battery or from a portable power source.
Replaceable Fuses
30 day warranty
Advanced microprocessor Control
High efficiency
Grooved Metal case for better cooling
Cooling Fan
On/Off Switch
Dual 110V AC Outlets
Attractive Silver Color Case
The 200 Watt Model Details
- Measures 5" by 5" by 2"
- Weighs 1.5 lbs.
- Attached 12v cigarette lighter plug
- Adapter for direct battery attachment
- 400 Watt Peak Surge
- 20 amp fuse
- Can Power appliances such as Lap Tops, Cash Registers, Lights, Radios, etc
The 400 Watt Model Details
- Measures 6.5" by 5" by 2"
- Weighs appx. 4 lbs.
- Improved load capacity with Removable cables for 12v plug and battery clamps
- 800 Watt Peak Surge
- 40 amp fuse
- Can Power Appliances such as 13" TV, Small Tools, Fans
/*
EasyThumbnail - versão 0.1 - Por Rogério Bragil - Esta classe
cria um thumbnail de uma imagem através de um cálculo de aproximação. Você
pode criar miniaturas de imagens de diferentes tamanhos que o resultado será
uma coleção de thumbnails de dimensões parecidas. Ideal para albuns de fotos,
onde basta você fazer o upload da imagem e deixar a classe gerar o thumbnail.
OBS: trabalha com jpg e png somente.
e-mail: bragil@webdevel.com.br - Qualquer sugestão, dúvida ou crítica serão bem aceitos!
*/
class EasyThumbnail
{
// private
var $debug = true;
// private
var $errflag = false;
// private
var $ext;
// private
var $origem;
// private
var $destino;
// private
var $errormsg;
var $image;
function EasyThumbnail($imagem, $destino, $aprox)
{
// se o arquivo não existir, erro
if (!file_exists($imagem))
{
$this->errormsg= "Image does not exist.";
return false;
}
else
{
$this->origem= $imagem;
$this->destino= $destino;
}
// obtém a extensão do arquivo
if (!$this->ext= $this->getExtension($imagem))
{
$this->errormsg= "Invalid Extension.";
return false;
}
// gera a imagem do thumbnail com o caminho e nome do arquivo especificados
// $this->image = $this->createThumbImg($aprox);
}
// retorna as dimensões (x,y) do thumbnail a ser gerado
function getThumbXY($x, $y, $aprox)
{
if ($x >= $y)
{
if ($x > $aprox)
{
$x1= (int)($x * ($aprox/$x));
$y1= (int)($y * ($aprox/$x));
}
else
{
$x1= $x;
$y1= $y;
}
}
else
{
if ($y > $aprox)
{
$x1= (int)($x * ($aprox/$y));
$y1= (int)($y * ($aprox/$y));
}
// Caso a imagem seja menor do que
// deve ser aproximado, mantém tamanho original para o thumb.
else
{
$x1= $x;
$y1= $y;
}
}
$vet= array("x" => $x1, "y" => $y1);
return $vet;
}
// cria a imagem do thumbnail
function createThumbImg($aprox)
{
// imagem de origem
$img_origem= $this->createImg();
// obtém as dimensões da imagem original
$origem_x= ImagesX($img_origem);
$origem_y= ImagesY($img_origem);
// obtém as dimensões do thumbnail
$vetor= $this->getThumbXY($origem_x, $origem_y, $aprox);
$x= $vetor['x'];
$y= $vetor['y'];
// cria a imagem do thumbnail
$img_final = ImageCreateTrueColor($x, $y);
// $img_final = ImageCreate($x, $y);
ImageCopyResampled($img_final, $img_origem, 0, 0, 0, 0, $x+1, $y+1, $origem_x, $origem_y);
// o arquivo é gravado
if ($this->ext == "png")
imagepng($img_final, $this->destino);
elseif ($this->ext == "jpg")
imagejpeg($img_final, $this->destino);
// return $img_final;
}
// cria uma imagem a partir do arquivo de origem
function createImg()
{
// imagem de origem
if ($this->ext == "png")
$img_origem= imagecreatefrompng($this->origem);
elseif ($this->ext == "jpg" || $this->ext == "jpeg")
$img_origem= imagecreatefromjpeg($this->origem);
return $img_origem;
}
// obtém a extensão do arquivo
function getExtension($imagem)
{
// isso é para obter o mime-type da imagem.
$mime= getimagesize($imagem);
if ($mime[2] == 2)
{
$ext= "jpg";
return $ext;
}
else
if ($mime[2] == 3)
{
$ext= "png";
return $ext;
}
else
return false;
}
// mensagem de erro
function getErrorMsg()
{
return $this->errormsg;
}
function isError()
{
return $this->errflag;
}
}
?>
You may also enjoy these other fine products from 12v Auto Tech
|
Jump and Pump
|
Combine the power of an 800 amp Portable jumpstart with the convienience and piece of mind of a 260 PSI air compressor. Using a DC/AC Converter it can also be used as a great portable power supply
|
|
|