求这张原图不加伊诺娃无水印原图的谢谢

求infinite张东雨的这张原图和出处就是不带水印的图.和出处._百度作业帮
求infinite张东雨的这张原图和出处就是不带水印的图.和出处.
5月的The Star 杂志的扫图 &其他成员都有 不光东雨一个求这张无水印原图 不要PS_百度知道
求这张无水印原图 不要PS
hiphotos.hiphotos./zhidao/wh%3D600%2C800/sign=69ca16c4952397ddd62ce8f/562c11dfa9ec8a136fd578c3fecc0c1.jpg" esrc="http://e.com/zhidao/wh%3D450%2C600/sign=/zhidao/pic/item/562c11dfa9ec8a136fd578c3fecc0c1://e.baidu://e.hiphotos.jpg" target="_blank" title="点击查看大图" class="ikqb_img_alink"><img class="ikqb_img" src="http<img class="ikqb_img" src="http.baidu.hiphotos请采纳<a href="/zhidao/wh%3D600%2C800/sign=2a616b03bd12c8fcb4a6fecbcc33be7d/4ec2dddbffbbcfc72c6a7efce1b6239.jpg" esrc="/zhidao/pic/item/4ec2dddbffbbcfc72c6a7efce1b6239.hiphotos://a://a
提问者评价
太给力了,你的回答完美地解决了我的问题,非常感谢!
其他类似问题
水印的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁您还未登陆,请登录后操作!
图片加上水印的代码
共有 2 位网友向您献上回答啦, 对答案满意?赶快给出你的好评,感谢他们吧!
(C#)给图片加上水印效果
private void Btn_Upload_Click(object sender, System.EventArgs e)
if(UploadFile.PostedFile.FileName.Trim()!="")
//上传文件
string extension = Path.GetExtension(UploadFile.PostedFile.FileName).ToUpper();
string fileName = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToStr
(C#)给图片加上水印效果
private void Btn_Upload_Click(object sender, System.EventArgs e)
if(UploadFile.PostedFile.FileName.Trim()!="")
//上传文件
string extension = Path.GetExtension(UploadFile.PostedFile.FileName).ToUpper();
string fileName = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString();
string path = Server.MapPath(".") + "/UploadFile/" + fileName +
UploadFile.PostedFile.SaveAs(path);
//加文字水印,注意,这里的代码和以下加图片水印的代码不能共存
System.Drawing.Image image = System.Drawing.Image.FromFile(path);
Graphics g = Graphics.FromImage(image);
g.DrawImage(image, 0, 0, image.Width, image.Height);
Font f = new Font("Verdana", 32);
Brush b = new SolidBrush(Color.White);
string addText = AddText.Value.Trim();
g.DrawString(addText, f, b, 10, 10);
g.Dispose();
//加图片水印
System.Drawing.Image image = System.Drawing.Image.FromFile(path);
System.Drawing.Image copyImage = System.Drawing.Image.FromFile( Server.MapPath(".") + "/ f");
Graphics g = Graphics.FromImage(image);
g.DrawImage(copyImage, new Rectangle(image.Width-copyImage.Width, image.Height-copyImage.Height, copyImage.Width, copyImage.Height), 0, 0, copyImage.Width, copyImage.Height, GraphicsUnit.Pixel);
g.Dispose();
//保存加水印过后的图片,删除原始图片
string newPath = Server.MapPath(".") + "/UploadFile/" + fileName + "_new" +
image.Save(newPath);
image.Dispose();
if(File.Exists(path))
File.Delete(path);
Response.Redirect(newPath);
-----------------------------------------------------
PHP给图片加上水印效果
limit = 500;//长宽限制
$image->wm_text=" ";//水印文字
$image->wm_fontfile="font/ f";//字体文件
$image->wm_color="00cccc";
//$image->save_file = " g";//保存到xx文件
$image->create(" g");//从xx文件创建
+--------------------------------------------------------------------------
| 生成缩略图&加水印的图片类
| ============================
- 共享互联网
| ============================
| 邮件:Dash@
+--------------------------------------------------------------------------
Class Gimage{
var $input_type = ""; //输入图片的格式
var $output_type = ""; //输出图片的格式
var $limit = 0; //图片大小限制
var $filename = ""; //输入图片的文件名(也可以直接是图片数据)
var $jpeg_quality = 90; //jpeg图片质量
var $save_file = ''; //输出文件名
var $wm_text = ""; //水印文字( 不支持中文:'( )
var $wm_size = 50; //水印文字大小
var $wm_angle = 0; //水印文字角度
var $wm_x = 50; //水印x坐标
var $wm_y = 50; //水印y坐标
var $wm_color = "#cccccc"; //水印颜色
var $wm_fontfile = " f";//水印字体文件
function create($filename="")
if ($filename) $this->filename = $
if (!$this->input_type) $this->get_type();
if (!$this->output_type) $this->output_type = $this->input_
if ($this->input_type == "jpg") $this->input_type = "jpeg";
if ($this->output_type == "jpg") $this->output_type = "jpeg";
switch ($this->input_type){
case 'gif':
$src_img=ImageCreateFromGIF($this->filename);
case 'jpeg':
$src_img=ImageCreateFromJPEG($this->filename);
case 'png':
$src_img=ImageCreateFromPNG($this->filename);
$src_img=ImageCreateFromString($this->filename);
$src_w=ImageSX($src_img);
$src_h=ImageSY($src_img);
if ($src_w>=$src_h){
if ($src_w>$this->limit){
$new_w=$this->
$new_h=($this->limit / $src_w)*$src_h;
if ($src_h>$this->limit){
$new_h=$this->
$new_w=($this->limit / $src_h)*$src_w;
if ($new_h){
$dst_img=imagecreatetruecolor($new_w,$new_h);
imagecopyresampled($dst_img,$src_img,0,0,0,0,$new_w,$new_h,ImageSX($src_img),ImageSY($src_img));
$dst_img = $src_
if ($this->wm_text)
if(preg_match("/([a-f0-9][a-f0-9])([a-f0-9][a-f0-9])([a-f0-9][a-f0-9])/i", $this->wm_color, $color))
$red = hexdec($color[1]);
$green = hexdec($color[2]);
$blue = hexdec($color[3]);
$wm_color = imagecolorallocatealpha($dst_img, $red, $green, $blue, 90);
imagettftext($dst_img, $this->wm_size, $this->wm_angle, $this->wm_x, $this->wm_y, $wm_color, $this->wm_fontfile, $this->wm_text);
if ($this->save_file)
switch ($this->output_type){
case 'gif':
$src_img=ImagePNG($dst_img, $this->save_file);
case 'jpeg':
$src_img=ImageJPEG($dst_img, $this->save_file, $this->jpeg_quality);
case 'png':
$src_img=ImagePNG($dst_img, $this->save_file);
$src_img=ImageJPEG($dst_img, $this->save_file, $this->jpeg_quality);
header("Content-type: image/{$this->output_type}");
switch ($this->output_type){
case 'gif':
$src_img=ImagePNG($dst_img);
case 'jpeg':
$src_img=ImageJPEG($dst_img, "", $this->jpeg_quality);
case 'png':
$src_img=ImagePNG($dst_img);
$src_img=ImageJPEG($dst_img, "", $this->jpeg_quality);
imagedestroy($dst_img);
function get_type()//获取图像文件类型
$name_array = explode(".",$this->filename);
if (preg_match("/\.(jpg|jpeg|gif|png)$/", $this->filename, $matches))
$this->input_type = strtolower($matches[1]);
$this->input_type = "string";
您的举报已经提交成功,我们将尽快处理,谢谢!
大家还关注跪求这张图片的原图 高清无水印 拜托了【最好也多发几张类似这种feel的图,谢谢拉】_百度知道
跪求这张图片的原图 高清无水印 拜托了【最好也多发几张类似这种feel的图,谢谢拉】
com/zhidao/pic/item/962bd40735fae6cdf4becc3a0db30f://h.com/zhidao/wh%3D600%2C800/sign=854cad115b1cfe/962bd40735fae6cdf4becc3a0db30f.jpg" esrc="http.jpg" target="_blank" title="点击查看大图" class="ikqb_img_alink"><img class="ikqb_img" src="/zhidao/wh%3D450%2C600/sign=7de4054713dfa9ecfd7b5e/962bd40735fae6cdf4becc3a0db30f.hiphotos.baidu.hiphotos://h.baidu://h.hiphotos.baidu<img class="ikqb_img" src="/zhidao/wh%3D450%2C600/sign=635124ada5efce1bea7ec0ce9a61dfe8/f31fbe096b63f6544ebf81b4ca3ee.hiphotos.baidu.hiphotos://d.baidu://d.hiphotos.baidu<a href="http
提问者评价
其他类似问题
高清无水印的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁

我要回帖

更多关于 求昆明三对夫妇原图 的文章

 

随机推荐