Questions tagged [emboss]

29 questions
41
votes
3 answers

iOS - How to achieve emboss effect for the text on UILabel?

Can I know how to have the emboss effect as the text "Reminders" as shown on the picture? It looks like the text are embedded? Thanks
Jackson Tale
  • 25,428
  • 34
  • 149
  • 271
8
votes
2 answers

How to create emboss around a Bitmap?

The popular game Words with Friends draws letter tiles at the game board as a single entity - You can see a yellow linear gradient applied to all letter tiles in the following screenshot and also an emboss effect on the edge: In my word game I…
Alexander Farber
  • 21,519
  • 75
  • 241
  • 416
7
votes
3 answers

Emboss edges of a image shape showing the depth in android

I want to show 3D embossed look and feel as shown in following image. I used EmbossMaskFilter but cannot get it to show the effect (see code below). Is there a different way to do this? or how can I use the EmbossMaskFilter for this. Required…
pats
  • 1,273
  • 2
  • 20
  • 43
6
votes
2 answers

Adding bevel and emboss to an SVG element?

So I was wondering if it was possible to add bevel and emboss to an SVG element? My CSS for my rectangle element is like this: rect { fill: #e8e9eb; stroke: black; stroke-width: 1px; width: 70; height: 30; } and I was trying to add this…
aug
  • 11,138
  • 9
  • 72
  • 93
4
votes
4 answers

How do I create embossed borders using HTML and CSS?

Some GUIs use boxes with embossed borders to group widgets. How do I create this look with HTML and CSS? An embossed border is one that creates the illusion that an element comes forward out of the page in 3D. It is often created by making the top…
23986294
  • 81
  • 1
  • 1
  • 3
3
votes
1 answer

Adding lighting effect to clipped image in Javafx

I try to add emboss effect (also called bump mapped) to a complex clipped image. (Namly a puzzle piece.) This could be done by a per pixel operation, but it is very expensive: the exact form of the clipping is runtime determined, so even the bump…
3
votes
2 answers

Python bug that only appears on embossed image using Numpy

The intention of this program is to take a ppm image and emboss it. (The entire project details can be found here) I am helping with the grading of the assignment and cannot seem to find the student's bug. The original image I am using looks like…
jth41
  • 3,808
  • 9
  • 59
  • 109
2
votes
2 answers

Android Paint EmbossMaskFilter conflicting with setShadowLayer

It looks like the mPaint.setShadowLayer() interferes with the mPaint.EmbossMaskFilter() directive. I cannot have both set for my paint, as there is nothing is drawn on the canvas otherwise. mPaintRing = new Paint(); …
halxinate
  • 1,509
  • 15
  • 22
2
votes
0 answers

j2me image processing: emboss effect and sketch effect not working

I'm working on an image processing project on the j2me platform. I have managed to apply simple effects, which do not involve convolution matrices, like sepia, grayscale, negative and posterize. I even managed to apply a blur effect using the…
Suveer Jacob
  • 893
  • 7
  • 11
2
votes
1 answer

Trouble calling EMBOSS program from python

I am having trouble calling an EMBOSS program (which runs via command line) called sixpack through Python. I run Python via Windows 7, Python version 3.23, Biopython version 1.59, EMBOSS version 6.4.0.4. Sixpack is used to translate a DNA sequence…
user1426421
  • 81
  • 1
  • 1
  • 8
1
vote
1 answer

PHP emboss with color

I need to make an emboss effect for an image in PHP. But I need to keep the real color, like the globe picture in http://loriweb.pair.com/8udf-emboss.html My final target is to make effect like this…
just2cya
  • 125
  • 2
  • 10
1
vote
0 answers

C++ Emboss text - Engrave or Raise

I would like to Emboss the text from a triangle model(made of vertices and faces) by CGAL. I use stbtt docs to convert shape of letter from True type font into polygons. Easy way to emboss is to use a boolean operation (union or minus to raise or…
1
vote
0 answers

How to convert output of Emboss:Palindrome into gff/bed file (perl)

I am sorry ton ask this kind of stupid question but I could not find it by myself... I learned perl a while ago and I am a little lost. I want to convert this kind of output : Palindromes of: seq1 Sequence length is: 24 Start at position: 1 End…
Papaya
  • 107
  • 9
1
vote
1 answer

error during installation of EMBOSS on MacOSX "dyld: Library not loaded: /usr/local/opt/jpeg/lib/libjpeg.8.dylib"

I'm trying to install EMBOSS v6.6.0 on a MacOSX 10.12 laptop. I did the following: ./configure --prefix=/Users/pc/local/opt/emboss/v6.6.0 sudo mkdir /usr/local/emboss sudo chown pc /usr/local/emboss make -j 4 Then I did make install and got the…
pcantalupo
  • 2,212
  • 17
  • 27
1
vote
1 answer

Biopython/EMBOSS WindowsError [Error 2]

I am trying to locally align a set of around 100, very long (>8000 sequence) sequences using the biopython wrapper for EMBOSS. Essentially I need to locally align each sequence in my fasta file against every other sequence in that fasta file. Thus…
Dider
  • 367
  • 1
  • 3
  • 17
1
2