Welcome![Sign In][Sign Up]
Location:
Search - CreateImage

Search list

[JSP/JavaCreateImage

Description: java图片加水印生成~自己写的~学习为主-java image plus watermark generated ~ ~ wrote it myself to learn the main
Platform: | Size: 1024 | Author: jackqn | Hits:

[JSP/JavaCreateImage

Description: java生成图形验证码源代码,可以对图形大小,背景、字体、粗体、干扰线等进行配置,非常实用。-Verification Code generated graphics java source code, can be the size of graphics, background, fonts, bold, interference lines configuration, very useful.
Platform: | Size: 4841472 | Author: 刘刘 | Hits:

[JSPJ2MEXIAOLULU

Description: 着几乎所有智能机厂商都将有自己配套的App Store,甚至并非智能手机制造商的三星也有意加入本次混战. 当然,我们也不能忘记苹果最先从iTunes中得到的灵感,从而带来了应用程序商店,一个正确的面向用户,开发者的平台,提供收入分配的盈利模式. Symbian下也有众多有趣的程序,诺基亚的应用商店将会让这些软件更有吸引力. -delta = (srcW << 16)/dstW int pos = delta >> 1 for (int x = 0 x < dstW x++) { g.setClip(x, 0, 1, srcH) g.drawImage(src, x- (pos >> 16), 0, Graphics.LEFT | Graphics.TOP) pos+= delta } Image dst = Image.createImage(dstW, dstH) g = dst.getGraphics() delta = (srcH << 16)/dstH pos = delta >> 1 for (int y = 0 y < dstH y++) { g.setClip(0, y, dstW, 1) g.drawImage(tmp, 0, y- (pos >> 16), Graphics.LEFT | Graphics.TOP) pos+= delta
Platform: | Size: 3623936 | Author: | Hits:

[GDI-BitmapCreateImage

Description: java生成带条纹的图片,可以设置长度与宽度-java generated images with stripes, you can set the length and width
Platform: | Size: 1024 | Author: sherry | Hits:

[JSP/JavaJavaFiletoArrayConverter

Description: Convert a File to an Array for example convert a gif file Picture.gif to a Java byte array Picture.gif.j that can be used by createImage method. -Convert a File to an Array for example convert a gif file Picture.gif to a Java byte array Picture.gif.j that can be used by createImage method.
Platform: | Size: 16384 | Author: Mark | Hits:

[Special EffectsCreateImage

Description: 本程序可以实现彩色照片到黑白照片的转换,-The program can be color photo to black and white photo conversion
Platform: | Size: 31744 | Author: ice | Hits:

[matlabcreatimage

Description: createimage函数实现当前零水平集(演化曲线)在原图上的显示和嵌入函数u的重新初始-Createimage functions implementing the current zero level set (curve evolution in the display on the original) and inline function u initial again
Platform: | Size: 1024 | Author: TAYLOR | Hits:

[Special EffectsCreateImage

Description: UG应用java进行开发的一个图像抓取程序。调用了UG中关于图像抓取的各项参数,对照帮助文档可以很好的学习一下图像抓取功能。-UG java application for development of an image capture program. Call the UG on the parameters of image capture, control help document to learn what can be a very good image capture function.
Platform: | Size: 4096 | Author: ld | Hits:

[JSP/JavaCreateImage

Description: 读出图片功能 很好用的 希望可以用到 对你有一定的 帮助的-Read the pictures very good hope can function used to some of you
Platform: | Size: 17408 | Author: 张晓泉 | Hits:

[JSP/JavaCreateImage

Description: 用JAVA语言,逐点绘制JPG图像,如果你功夫高,还可以修改图像-java draw the image
Platform: | Size: 1024 | Author: aidi | Hits:

[Special EffectsGAC-image-segmentation

Description: 这个代码采用迎风方案实现推广GAC模型的水平集方法。gauss,createimage是调用的子程序-this program is to realize extending gac level set method with Hj
Platform: | Size: 3072 | Author: 潘婷婷 | Hits:

[JSP/JavaCreateImage

Description: 使用java语言,创建一张image图片-Creating an image by java language
Platform: | Size: 1024 | Author: 陈永宏 | Hits:

[JSP/JavaCreateImage

Description: java实现柱状图 折线图 饼状图,使用jfreechart-java the histogram line chart pie chart, use jfreechart
Platform: | Size: 1894400 | Author: 崔亚茹 | Hits:

[Linux-Unixunique_test

Description: Allow the loaders to use the XSHM extension. It probably requires callbacks for createImage destroyImage similar to DRI2 getBuffers.
Platform: | Size: 4096 | Author: bsviucp | Hits:

[WEB Codecool-php-captcha-0.3

Description: cool-php-captcha 是一个很酷的 PHP 用来生成验证码的库。 示例代码: session_start() $captcha = new SimpleCaptcha() // Change configuration... //$captcha->wordsFile = null // Disable dictionary words //$captcha->wordsFile = words/es.txt // Enable spanish words //$captcha->session_var = secretword // Change session variable $captcha->CreateImage() -Cool-php-captcha is a very cool PHP used to generate verification code library. Sample code: Session_start () $captcha = SimpleCaptcha new () Change// configuration... //$captcha->wordsFile = null // Disable dictionary words //$captcha->wordsFile = words/es.txt // Enable Spanish words //$captcha->session_var = secretword // Change session variable $captcha->CreateImage ()
Platform: | Size: 1580032 | Author: 苟轩 | Hits:

[OpenCVdrawing

Description: opencv def random_color(random): Return a random color icolor = random.randint(0, 0xFFFFFF) return cv.Scalar(icolor & 0xff, (icolor >> 8) & 0xff, (icolor >> 16) & 0xff) if __name__ == __main__ : # some constants width = 1000 height = 700 window_name = Drawing Demo number = 100 delay = 5 line_type = cv.CV_AA # change it to 8 to see non-antialiased graphics # create the source image image = cv.CreateImage( (width, height), 8, 3) # create window and display the original picture in it cv.NamedWindow(window_name, 1) cv.SetZero(image) cv.ShowImage(window_name, image) # create the random number random = Random().....To Be continued-opencv def random_color(random): Return a random color icolor = random.randint(0, 0xFFFFFF) return cv.Scalar(icolor & 0xff, (icolor >> 8) & 0xff, (icolor >> 16) & 0xff) if __name__ == __main__ : # some constants width = 1000 height = 700 window_name = Drawing Demo number = 100 delay = 5 line_type = cv.CV_AA # change it to 8 to see non-antialiased graphics # create the source image image = cv.CreateImage( (width, height), 8, 3) # create window and display the original picture in it cv.NamedWindow(window_name, 1) cv.SetZero(image) cv.ShowImage(window_name, image) # create the random number random = Random().....To Be continued
Platform: | Size: 1024 | Author: Phindx | Hits:

[OS Developos

Description: 基于mips的操作系统kernel文件的加载和镜像文件的创建(Kernel file loading and image file creation based on MIPS)
Platform: | Size: 1024 | Author: cpluss | Hits:

CodeBus www.codebus.net